Added greetings workflow

This commit is contained in:
Xithrius 2021-10-30 19:28:22 -07:00
parent e8a1745e7e
commit de02a8035c
No known key found for this signature in database
GPG Key ID: BD0FC909FA912B62

20
.github/workflows/greetings.yml vendored Normal file
View File

@ -0,0 +1,20 @@
name: Greetings
on:
pull_request:
branches: [ main ]
issues:
branches: [ main ]
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 the issue! This issue will be addressed in a reasonable amount of time.'
pr-message: 'Thank you for the pull request! This contribution will be addressed in a reasonable amount of time.'