Skip to content

Commit

Permalink
Add new workflow for greetings
Browse files Browse the repository at this point in the history
Add a new workflow to be welcome our new contributors and let them know how to find help.
  • Loading branch information
EmilienM committed Nov 10, 2021
1 parent 2cf8e4c commit eaab70a
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/greetings.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Greetings

on: [pull_request, issues]

jobs:
greeting:
runs-on: ubuntu-latest
permissions:
issues: write
pull-requests: write
steps:
- uses: actions/first-interaction@v1
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
issue-message: |
Thank you for reporting your first issue! Be sure that we will be looking at it.
Please let the maintainers know if your issue has not got enough attention after a few days.
If any doubt, please consult our issue [tutorial](https://github.com/gophercloud/gophercloud/blob/master/docs/contributor-tutorial/step-02-issues.md).
pr-message: |
Thank you for reporting your first PR! Be sure that we will be looking at it.
Please let the maintainers know if your PR has not got enough attention after a few days.
If any doubt, please consult our PR [tutorial](https://github.com/gophercloud/gophercloud/blob/master/docs/contributor-tutorial/step-05-pull-requests.md).

0 comments on commit eaab70a

Please sign in to comment.