From 3bed2a6e5fbf94828bf4d85852dd242c55e214ed Mon Sep 17 00:00:00 2001 From: Martijn Laarman Date: Mon, 31 Aug 2026 15:22:16 +0200 Subject: [PATCH] Grant issues:write so the PR Review workflow can start The PR Review workflow granted only issues:read, but its reusable workflow's conclusion and safe_outputs jobs request issues:write for failure and no-op run tracking. GitHub rejects the permission escalation before any job starts, so every PR Review run since the workflow was added has failed with a startup error. Co-Authored-By: Claude Sonnet 5 Co-authored-by: Cursor --- .github/workflows/pr-review.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pr-review.yml b/.github/workflows/pr-review.yml index ff8def573..3c884acdc 100644 --- a/.github/workflows/pr-review.yml +++ b/.github/workflows/pr-review.yml @@ -7,7 +7,7 @@ permissions: actions: read contents: read copilot-requests: write - issues: read + issues: write # needed for failure tracking and no-op run tracking pull-requests: write jobs: