Skip to content

Commit

Permalink
ci: implement greeting.yml (#94)
Browse files Browse the repository at this point in the history
  • Loading branch information
tungbq authored Jul 29, 2023
2 parents 69887bb + e8a8f89 commit 9e40aae
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/greeting.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Greetings

on:
pull_request_target:
types:
- opened
issues:
types:
- opened

jobs:
greeting:
runs-on: ubuntu-latest
if: ${{ github.actor != 'all-contributors[bot]' }}
permissions:
issues: write
pull-requests: write
steps:
- uses: actions/first-interaction@v1
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
issue-message: "Hi, thanks for your contribution! Great first issue!"
pr-message: "Hi, thanks for your contribution! Great first PR!"

0 comments on commit 9e40aae

Please sign in to comment.