From b6f17fcd1a5cee82fc48cda6c357c9295ee758e9 Mon Sep 17 00:00:00 2001 From: Bill Wagner Date: Thu, 25 Apr 2024 17:36:42 -0400 Subject: [PATCH] add write perms on pull requests (#250) 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. --- .github/workflows/quest-bulk.yml | 1 + .github/workflows/quest.yml | 1 + 2 files changed, 2 insertions(+) diff --git a/.github/workflows/quest-bulk.yml b/.github/workflows/quest-bulk.yml index b79f6f7..f7e4adb 100644 --- a/.github/workflows/quest-bulk.yml +++ b/.github/workflows/quest-bulk.yml @@ -14,6 +14,7 @@ jobs: runs-on: ubuntu-latest permissions: issues: write + pull-requests: write if: ${{ github.repository_owner == 'dotnet' }} steps: diff --git a/.github/workflows/quest.yml b/.github/workflows/quest.yml index 8589534..d22213a 100644 --- a/.github/workflows/quest.yml +++ b/.github/workflows/quest.yml @@ -21,6 +21,7 @@ jobs: runs-on: ubuntu-latest permissions: issues: write + pull-requests: write steps: - name: "Print manual run reason"