From c22e90b843ac29743540d1f0b895686b9652dbce Mon Sep 17 00:00:00 2001 From: Ramon Niebla Date: Wed, 15 Apr 2026 08:13:48 -0700 Subject: [PATCH] fix: add permissions for release-please job The release-please job needs contents:write and pull-requests:write to create/update its release PR git tree via the GitHub API. Made-with: Cursor --- .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 399c77bb..c9d8c55d 100644 --- a/.github/workflows/release-please.yml +++ b/.github/workflows/release-please.yml @@ -10,6 +10,9 @@ jobs: release-please: runs-on: ubuntu-latest if: github.event_name == 'push' + permissions: + contents: write + pull-requests: write outputs: release_created: ${{ steps.release.outputs.release_created }} tag_name: ${{ steps.release.outputs.tag_name }}