Skip to content
Open
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
11 changes: 10 additions & 1 deletion .gemini/settings.json
Original file line number Diff line number Diff line change
@@ -1 +1,10 @@
{ "contextFileName": "AGENTS.md", "advanced": { "bugCommand": { "urlTemplate": "https://github.com/wp-cli/.github/issues/new?template=1-BUG_REPORT.md&title={title}" } } }
{
"context": {
"fileName": "AGENTS.md"
},
"advanced": {
"bugCommand": {
"urlTemplate": "https://github.com/wp-cli/.github/issues/new?template=1-BUG_REPORT.md&title={title}"
}
}
}
19 changes: 19 additions & 0 deletions .github/workflows/reusable-welcome-new-contributors.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Welcome New Contributors

on:
workflow_call:

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