Create a gh action for the first time contributors
This commit is contained in:
parent
289791ad85
commit
3c9eb824ca
1 changed files with 30 additions and 0 deletions
30
.github/workflows/welcome-first-time-contributors.yml
vendored
Normal file
30
.github/workflows/welcome-first-time-contributors.yml
vendored
Normal file
|
@ -0,0 +1,30 @@
|
||||||
|
name: Welcome first time contributors
|
||||||
|
|
||||||
|
on:
|
||||||
|
pull_request_target:
|
||||||
|
types:
|
||||||
|
- opened
|
||||||
|
issues:
|
||||||
|
types:
|
||||||
|
- opened
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
welcome:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/first-interaction@v1
|
||||||
|
with:
|
||||||
|
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
issue-message: |
|
||||||
|
Hello there ${{ github.actor }}! 👋
|
||||||
|
|
||||||
|
Thank you and congratulations 🎉 for opening your very first issue in this project! 💖
|
||||||
|
|
||||||
|
In case you want to claim this issue, please comment down below! We will try to get back to you as soon as we can. 👀
|
||||||
|
|
||||||
|
pr-message: |
|
||||||
|
Hello there ${{ github.actor }}! 👋
|
||||||
|
|
||||||
|
Thank you and congrats 🎉 for opening your first PR on this project! ✨ 💖
|
||||||
|
|
||||||
|
We will try to review it soon!
|
Loading…
Add table
Reference in a new issue