-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: Fix workflow permissions to update PRs (#27)
The changes to the update-issues tool to process PRs failed due to permission errors. This adds necessary permissions to the workflow.
- Loading branch information
1 parent
24ed1b2
commit 208556c
Showing
2 changed files
with
2 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,6 +10,7 @@ on: | |
|
||
permissions: | ||
issues: write | ||
pull-requests: write | ||
|
||
jobs: | ||
update-issues: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,6 +10,7 @@ on: | |
|
||
permissions: | ||
issues: write | ||
pull-requests: write | ||
|
||
jobs: | ||
update-issues: | ||
|