feat: add git/reset-all script #15
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
| --- # Greetings | |
| # Maintain in repo: cs-template | |
| name: Greetings | |
| on: | |
| issues: | |
| types: | |
| - opened | |
| pull_request_target: | |
| types: | |
| - opened | |
| permissions: | |
| issues: write | |
| pull-requests: write | |
| jobs: | |
| greeting: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: "First Interaction" | |
| uses: actions/first-interaction@v3.1.0 | |
| with: | |
| repo_token: ${{secrets.GITHUB_TOKEN}} | |
| issue_message: "Thanks for opening your first issue here! Please make sure you have read the contributing guidelines." | |
| pr_message: "Thanks for opening this pull request! Please make sure you have read the contributing guidelines." |