chore(deps): bump lycheeverse/lychee-action from 2.7.0 to 2.8.0 in the actions-minor-patch group #211
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 | |
| timeout-minutes: 5 | |
| 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. | |
| **Resources:** | |
| - [Contributing Guide](CONTRIBUTING.md) | |
| - [Code of Conduct](CODE_OF_CONDUCT.md) | |
| Please ensure 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. | |
| **Before merge, please ensure:** | |
| - [ ] You've read our [Contributing Guide](CONTRIBUTING.md) | |
| - [ ] All markdown is properly linted (`markdownlint '**/*.md' --ignore node_modules`) | |
| - [ ] Shell scripts pass validation (`shellcheck plugins/plugin-dev/skills/*/scripts/*.sh`) | |
| - [ ] You've tested the changes locally with `claude --plugin-dir plugins/plugin-dev` | |
| A maintainer will review your PR soon. Feel free to ask questions if you need help! |