github.com/gophercloud/gophercloud@v1.11.0/.github/workflows/greetings.yml (about) 1 name: Greetings 2 3 on: [pull_request_target, issues] 4 5 jobs: 6 greeting: 7 runs-on: ubuntu-latest 8 permissions: 9 issues: write 10 pull-requests: write 11 steps: 12 - uses: actions/first-interaction@v1 13 with: 14 repo-token: ${{ secrets.GITHUB_TOKEN }} 15 issue-message: | 16 Thank you for reporting your first issue! Be sure that we will be looking at it, but keep in mind 17 this sometimes takes a while. 18 Please let the maintainers know if your issue has not got enough attention after a few days. 19 If any doubt, please consult our issue [tutorial](https://github.com/gophercloud/gophercloud/blob/master/docs/contributor-tutorial/step-02-issues.md). 20 pr-message: | 21 Thank you for submitting your first PR! Be sure that we will be looking at it but keep in mind 22 this sometimes takes a while. 23 Please let the maintainers know if your PR has not got enough attention after a few days. 24 If any doubt, please consult our PR [tutorial](https://github.com/gophercloud/gophercloud/blob/master/docs/contributor-tutorial/step-05-pull-requests.md).