Skip to content

Commit 0529c3d

Browse files
Update github workflows to avoid issues with GITHUB_TOKEN (#19467)
- Added write permissions in gh workflow
1 parent 44b9b29 commit 0529c3d

File tree

5 files changed

+10
-2
lines changed

5 files changed

+10
-2
lines changed

.github/workflows/autoAssignABTT.yml

+2
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ on:
99
jobs:
1010
assign_one_project:
1111
runs-on: ubuntu-latest
12+
permissions:
13+
issues: write
1214
name: Assign to ABTT Project
1315
steps:
1416
- name: "Assign issues with 'Area: ABTT' label to project board"

.github/workflows/autoAssignRM.yml

+2
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ on:
99
jobs:
1010
assign_one_project:
1111
runs-on: ubuntu-latest
12+
permissions:
13+
issues: write
1214
name: Assign to RM Project
1315
steps:
1416
- name: "Assign issues with 'Area: RM' label to project board"

.github/workflows/blank.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@ jobs:
77
label:
88

99
runs-on: ubuntu-latest
10-
10+
permissions:
11+
issues: write
1112
steps:
1213
- uses: actions/checkout@v1
1314
- uses: damccorm/tag-ur-it@master

.github/workflows/localization-automerge.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@ on:
1010
jobs:
1111
worker:
1212
runs-on: ubuntu-latest
13-
13+
permissions:
14+
issues: write
1415
if: github.actor == 'csigs'
1516
steps:
1617
- uses: actions/github-script@v3

.github/workflows/stale.yml

+2
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ on:
77
jobs:
88
stale:
99
runs-on: ubuntu-latest
10+
permissions:
11+
issues: write
1012
steps:
1113
- uses: actions/stale@v3
1214
with:

0 commit comments

Comments
 (0)