Bump docker/metadata-action from 032a4b3bda1b716928481836ac5bfe36e1feaad6 to 8d8c7c12f7b958582a5cb82ba16d5903cb27976a #37
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: | |
| issues: | |
| types: [opened] | |
| pull_request: | |
| types: [opened] | |
| permissions: | |
| issues: write | |
| pull-requests: write | |
| jobs: | |
| greeting: | |
| name: Greet first-time contributors | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/first-interaction@v3 | |
| with: | |
| repo-token: ${{ secrets.GITHUB_TOKEN }} | |
| pr_message: "Thank you for your pull request!" |