From e3f00e82b9849dd3663e7adf01fbf6f31fc679d3 Mon Sep 17 00:00:00 2001 From: fettpl <38704082+fettpl@users.noreply.github.com> Date: Tue, 17 Feb 2026 14:14:41 +0100 Subject: [PATCH] fix(ci): add pull-requests write permission to contributor-tier-issues job (#501) The contributor-tier-issues job triggers on pull_request_target events but only had issues:write permission. GitHub API requires pull-requests:write to set labels on pull requests, causing a 403 "Resource not accessible by integration" error. Co-authored-by: Claude Opus 4.6 --- .github/workflows/auto-response.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/auto-response.yml b/.github/workflows/auto-response.yml index 4398085..753bb52 100644 --- a/.github/workflows/auto-response.yml +++ b/.github/workflows/auto-response.yml @@ -18,6 +18,7 @@ jobs: runs-on: blacksmith-2vcpu-ubuntu-2404 permissions: issues: write + pull-requests: write steps: - name: Apply contributor tier label for issue author uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8