Skip to content

Commit

Permalink
chore: create greetings workflow (#1909)
Browse files Browse the repository at this point in the history
  • Loading branch information
jackton1 committed Feb 2, 2024
1 parent d3ac2a0 commit 926735a
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/greetings.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Greetings

on: [pull_request_target, issues]

permissions:
pull-requests: write
issues: write

jobs:
greeting:
runs-on: ubuntu-latest
steps:
- uses: actions/first-interaction@v1
continue-on-error: true
with:
repo-token: ${{ secrets.PAT_TOKEN }}
issue-message: "Thanks for reporting this issue, don't forget to star this project if you haven't already to help us reach a wider audience."
pr-message: "Thanks for implementing a fix, could you ensure that the test covers your changes if applicable."

0 comments on commit 926735a

Please sign in to comment.