From a9d6e031308ab7b5be55a01ab6cecfb35cb497f8 Mon Sep 17 00:00:00 2001 From: Alex Boten <223565+codeboten@users.noreply.github.com> Date: Wed, 18 Dec 2024 02:27:46 -0800 Subject: [PATCH] chore: fix permission issue for apply labels (#80) ## Which problem is this PR solving? Attempt to address permission issues seen on attempts to apply labels on pull requests ## Short description of the changes Provide write permission to the apply-labels job ## How to verify that this has the expected result Merge the change and open a PR to ensure the workflow doesn't fail --- .github/workflows/apply-labels.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/apply-labels.yml b/.github/workflows/apply-labels.yml index d329321..cf86a37 100644 --- a/.github/workflows/apply-labels.yml +++ b/.github/workflows/apply-labels.yml @@ -4,6 +4,9 @@ jobs: apply-labels: runs-on: ubuntu-latest name: Apply common project labels + permissions: + issues: write + pull-requests: write steps: - uses: honeycombio/oss-management-actions/labels@v1 with: