From 13236bcb7399f886b78934283452df8819357e3e Mon Sep 17 00:00:00 2001 From: Aaron Zeisler Date: Wed, 22 Jul 2026 09:31:04 -0700 Subject: [PATCH] fix(ci): grant contents/PR write permissions to release-please job Without an explicit permissions block, the job's GITHUB_TOKEN is read-only under the tightened default, so release-please-action fails with 403 Resource not accessible by integration when creating the release branch and PR. Mirrors the create-prs job in check-go-versions.yml. --- .github/workflows/release-please.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/release-please.yml b/.github/workflows/release-please.yml index 6596ec3..a001d82 100644 --- a/.github/workflows/release-please.yml +++ b/.github/workflows/release-please.yml @@ -8,6 +8,9 @@ on: jobs: release-please: + permissions: + contents: write + pull-requests: write runs-on: ubuntu-latest steps: - uses: googleapis/release-please-action@v4