Skip to content

Commit 01fc433

Browse files
committed
fix: workflows
1 parent 29b564c commit 01fc433

File tree

3 files changed

+40
-3
lines changed

3 files changed

+40
-3
lines changed

.github/workflow/contributors.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@ jobs:
1010
steps:
1111
- uses: wow-actions/contributors-list@v1
1212
with:
13-
GITHUB_TOKEN: ${{ secrets.ACTION_TOKEN }}
13+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
1414
round: true
1515
svgPath: CONTRIBUTORS.svg

.github/workflow/generate-project-list.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
- name: Checkout code
1313
uses: actions/checkout@v3
1414
with:
15-
token: ${{ secrets.ACTION_TOKEN }}
15+
token: ${{ secrets.GITHUB_TOKEN }}
1616
persist-credentials: true
1717

1818
- name: Fetch latest changes
@@ -62,4 +62,4 @@ jobs:
6262
echo "No changes to commit."
6363
fi
6464
env:
65-
GITHUB_TOKEN: ${{ secrets.ACTION_TOKEN }}
65+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.github/workflow/welcome.yml

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
name: New Contributor Welcome
2+
3+
permissions:
4+
issues: write
5+
pull-requests: write
6+
7+
on:
8+
pull_request:
9+
types: [opened, closed]
10+
issues:
11+
types: [opened]
12+
13+
jobs:
14+
greet_new_contributor:
15+
runs-on: ubuntu-latest
16+
steps:
17+
- uses: wow-actions/welcome@v1.3.1
18+
with:
19+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
20+
FIRST_ISSUE_REACTIONS: "+1, hooray, rocket, heart"
21+
FIRST_ISSUE: >
22+
👋 Greetings @{{ author }}!
23+
24+
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.
25+
26+
FIRST_PR: >
27+
👋 Welcome aboard, @{{ author }}!
28+
29+
We're delighted to have your first pull request! Please take a moment to check our contributing guidelines to ensure a smooth process.
30+
31+
FIRST_PR_MERGED: >
32+
🎉 Kudos @{{ author }}!
33+
34+
You've just merged your first pull request! We're excited to have you in our community. Keep up the fantastic contributions!
35+
STAR_MESSAGE: If you enjoy this project, please consider ⭐ starring ⭐ our repository!
36+
env:
37+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)