Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions .github/workflows/reusable-welcome-new-contributors.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Welcome New Contributors

on:
workflow_call:

permissions:
pull-requests: write
jobs:
welcome:
runs-on: ubuntu-latest
steps:
- name: First Interaction
uses: actions/first-interaction@v3
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
pr_message: |
Hello! 👋

Thanks for opening this pull request! Please check out our [contributing guidelines](https://make.wordpress.org/cli/handbook/contributions/contributing/). We appreciate you taking the initiative to contribute to this project.

Contributing isn't limited to just code. We encourage you to contribute in the way that best fits your abilities, by writing tutorials, giving a demo at your local meetup, helping other users with their support questions, or revising our documentation.
1 change: 1 addition & 0 deletions .github/workflows/sync-workflows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ jobs:
^.editorconfig
^.github/workflows/copilot-setup-steps.yml
^.github/workflows/regenerate-readme.yml
^.github/workflows/welcome-new-contributors.yml
^.github/workflows/issue-triage.yml
^.github/workflows/check-branch-alias.yml
^.github/workflows/manage-labels.yml
Expand Down
12 changes: 12 additions & 0 deletions .github/workflows/welcome-new-contributors.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
name: Welcome New Contributors

on:
pull_request_target:
types: [opened]
branches:
- main
- master

jobs:
welcome:
uses: wp-cli/.github/.github/workflows/reusable-welcome-new-contributors.yml@main