Skip to content

Commit

Permalink
gh action for first time contributor (#28)
Browse files Browse the repository at this point in the history
* gh action for first time contributor

* update
  • Loading branch information
norbybaru committed Sep 14, 2023
1 parent 2af210c commit 9c06334
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/hello.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Friendly Welcome

on:
issues:
types: [opened]
pull_request_target:
types: [opened]

jobs:
welcome:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/first-interaction@v1
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
issue-message: |
Hello! Thank you for filing an issue 🎉.
If this is a 🐞 report, please include relevant logs to help us debug the problem.
pr-message: |
Hello! Thank you for your contribution 🎉👏 .
If you are fixing a bug, please reference the issue number in the description.
If you are implementing a feature request, please check with the maintainers that the feature will be accepted first.
For any PR make sure to include test coverage. Run command `composer test`

0 comments on commit 9c06334

Please sign in to comment.