Fullstack: Vendor Gamification (Achievement Badges) #44
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: Greetings | |
| on: | |
| pull_request_target: | |
| types: [opened] | |
| issues: | |
| types: [opened] | |
| jobs: | |
| greeting: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| issues: write | |
| pull-requests: write | |
| steps: | |
| - uses: actions/first-interaction@v3 | |
| with: | |
| repo_token: ${{ secrets.GITHUB_TOKEN }} | |
| issue_message: | | |
| 👋 Welcome to FreshScan AI! Thank you for opening an issue. | |
| Our maintainers will review this shortly. In the meantime, please ensure your report includes all necessary context and reproduction steps (if it's a bug). If this is a security issue, please close this and follow the `SECURITY.md` protocol. | |
| pr_message: | | |
| 🎉 Thank you for your Pull Request! We're thrilled to have your contribution to FreshScan AI. | |
| Before we review, please make sure you have: | |
| - Followed the `CONTRIBUTING.md` guidelines. | |
| - Ensured all automated CI checks (linting, tests) are passing. | |
| - Checked that your commit messages follow the Conventional Commits format. | |
| A maintainer will review your code as soon as possible! |