From e673bc68c444caa0ffb4d6b4a45da98c0982104c Mon Sep 17 00:00:00 2001 From: "Hugh Hackman [bot]" Date: Thu, 19 Mar 2026 21:24:53 +0000 Subject: [PATCH] fix: add pull-requests write permission to release workflow The reusable release workflow declares pull-requests:write but the caller didn't grant it, causing startup_failure on GitHub Actions. Co-Authored-By: Claude Opus 4.6 --- .github/workflows/release.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 71a00f1..662f353 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -10,6 +10,7 @@ on: permissions: contents: write + pull-requests: write jobs: release: -- 2.52.0