-
Notifications
You must be signed in to change notification settings - Fork 63
37 lines (29 loc) · 1.23 KB
/
welcome.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
name: New Contributor Welcome
permissions:
issues: write
pull-requests: write
on:
pull_request:
types: [opened, closed]
issues:
types: [opened]
jobs:
greet_new_contributor:
runs-on: ubuntu-latest
steps:
- uses: wow-actions/[email protected]
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
FIRST_ISSUE_REACTIONS: "+1, hooray, rocket, heart"
FIRST_ISSUE: >
👋 Greetings @{{ author }}!
We're thrilled to see you opening your first issue! Your input is invaluable to us. Don’t forget to adhere to our issue template for the best experience.
FIRST_PR: >
👋 Welcome aboard, @{{ author }}!
We're delighted to have your first pull request! Please take a moment to check our contributing guidelines to ensure a smooth process.
FIRST_PR_MERGED: >
🎉 Kudos @{{ author }}!
You've just merged your first pull request! We're excited to have you in our community. Keep up the fantastic contributions!
STAR_MESSAGE: If you enjoy this project, please consider ⭐ starring ⭐ our repository!
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}