Skip to content

Commit ac6006a

Browse files
authored
fix write perms bug
1 parent 5dfd8ea commit ac6006a

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

.github/workflows/contributor_welcome.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
name: New Contributor Welcome
22

3+
permissions:
4+
issues: write
5+
pull-requests: write
6+
37
on:
48
pull_request:
59
types: [opened, closed]
@@ -12,7 +16,8 @@ jobs:
1216
steps:
1317
- uses: wow-actions/[email protected]
1418
with:
15-
GITHUB_TOKEN: ${{ secrets.ACTION_TOKEN }}
19+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
20+
FIRST_ISSUE_REACTIONS: "+1, hooray, rocket, heart"
1621
FIRST_ISSUE: >
1722
👋 Greetings @{{ author }}!
1823
@@ -28,4 +33,5 @@ jobs:
2833
2934
You've just merged your first pull request! We're excited to have you in our community. Keep up the fantastic contributions!
3035
STAR_MESSAGE: If you enjoy this project, please consider ⭐ starring ⭐ our repository!
31-
36+
env:
37+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)