Skip to content

Commit 580a761

Browse files
authored
Add write permissions for pull requests (#9723)
GitHub permissions are ANDed, not ORed. So, even though the sequester app was given permission to read and write pull requests, the configuration in YAML prevented it. This ensures that if a PR is tagged as a work item, it will be imported correctly.
1 parent a7a3afa commit 580a761

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

.github/workflows/quest-bulk.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ jobs:
1414
runs-on: ubuntu-latest
1515
permissions:
1616
issues: write
17+
pull-requests: write
1718
if: ${{ github.repository_owner == 'dotnet' }}
1819

1920
steps:

.github/workflows/quest.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ jobs:
2121
runs-on: ubuntu-latest
2222
permissions:
2323
issues: write
24+
pull-requests: write
2425

2526
steps:
2627
- name: "Print manual run reason"

0 commit comments

Comments
 (0)