From 4a2a5ae2735447ef40ee01fc437a49b7bbd86897 Mon Sep 17 00:00:00 2001 From: j4rviscmd Date: Sat, 28 Mar 2026 20:00:04 +0900 Subject: [PATCH] fix: grant contents:write permission to generate-notes job in release workflow The generateReleaseNotes GitHub API requires contents:write permission. Without it, the workflow fails with 403 "Resource not accessible by integration". Co-Authored-By: Claude Opus 4.6 --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 07199b1..4634d1f 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -79,7 +79,7 @@ jobs: needs: preflight if: needs.preflight.outputs.skip != 'true' permissions: - contents: read + contents: write runs-on: ubuntu-latest outputs: notes: ${{ steps.notes.outputs.notes }}