chore(deps): bump anthropics/claude-code-action from 94e310eb2ce38c5bff2934c5858caf6cbde5ac01 to 0d1933529914177075d5bc3558ae3d047f188146 #176
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: | |
| # Skip bot accounts to avoid greeting automated tools | |
| if: github.actor != 'dependabot[bot]' && github.actor != 'claude[bot]' | |
| runs-on: ubuntu-latest | |
| permissions: | |
| issues: write | |
| pull-requests: write | |
| steps: | |
| - uses: actions/first-interaction@1c4688942c71f71d4f5502a26ea67c331730fa4d # v3.1.0 | |
| 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! |