Skip to content

Commit

Permalink
ci: add GH action to greet first-time contributors
Browse files Browse the repository at this point in the history
  • Loading branch information
engineervix committed Jul 12, 2021
1 parent 81837d2 commit 8085515
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/greetings.yml
@@ -0,0 +1,16 @@
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: 'Hello @${{ github.actor }}, thank you for submitting an issue! 🙂'
pr-message: 'Hello @${{ github.actor }}, thank you submitting a pull request!'

0 comments on commit 8085515

Please sign in to comment.