Skip to content

Commit f7e477b

Browse files
Update github workflows to avoid issues with GITHUB_TOKEN (#1014)
- Added write permissions in gh workflow
1 parent 5b41878 commit f7e477b

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

.github/workflows/autoAssignABTT.yml

+2
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ on:
88
jobs:
99
assign_one_project:
1010
runs-on: ubuntu-latest
11+
permissions:
12+
issues: write
1113
name: Assign to ABTT Project
1214
steps:
1315
- name: "Add triage and area labels"

.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-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@ jobs:
99
stale:
1010

1111
runs-on: ubuntu-latest
12-
12+
permissions:
13+
issues: write
1314
steps:
1415
- uses: actions/stale@v3
1516
with:

0 commit comments

Comments
 (0)