feat(agent-development): add comparative trigger phrases to skill description #20
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Greet First Time Contributors | |
| on: | |
| pull_request_target: | |
| types: [opened] | |
| issues: | |
| types: [opened] | |
| # Group by PR/issue number to prevent overlapping greetings for same item | |
| # cancel-in-progress: false ensures all first-timers get greeted | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.event.issue.number || github.ref }} | |
| cancel-in-progress: false | |
| jobs: | |
| greeting: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| issues: write | |
| pull-requests: write | |
| steps: | |
| - uses: actions/first-interaction@1c4688942c71f71d4f5502a26ea67c331730fa4d # v3 | |
| with: | |
| issue_message: | | |
| 👋 Thanks for opening your first issue! We appreciate your contribution to plugin-dev. | |
| Please make sure you've provided all the requested information in the issue template. Our maintainers will review this soon. | |
| pr_message: | | |
| 🎉 Thanks for opening your first pull request! We appreciate your contribution to plugin-dev. | |
| Please make sure: | |
| - [ ] You've filled out the PR template completely | |
| - [ ] All markdown is properly linted | |
| - [ ] You've tested the changes locally | |
| A maintainer will review your PR soon. Feel free to ask questions if you need help! |