From 0b874d4b330168790037e3a599b58fcef0bb13fd Mon Sep 17 00:00:00 2001 From: AndyMik90 Date: Thu, 25 Dec 2025 21:34:38 +0100 Subject: [PATCH] fix(ci): add write permissions to beta-release update-version job MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The update-version job needs contents: write permission to push the version bump commit and tag to the repository. Without this, the workflow fails with a 403 error when trying to git push. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- .github/workflows/beta-release.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/beta-release.yml b/.github/workflows/beta-release.yml index 848c2d6a..a8413a4b 100644 --- a/.github/workflows/beta-release.yml +++ b/.github/workflows/beta-release.yml @@ -36,6 +36,8 @@ jobs: name: Update package.json version needs: validate-version runs-on: ubuntu-latest + permissions: + contents: write outputs: version: ${{ steps.version.outputs.version }} steps: