From e9dbc3ce3966384d17274ce3a8db5ac5d680d18e Mon Sep 17 00:00:00 2001 From: thomasht86 Date: Wed, 7 Jan 2026 08:51:40 +0100 Subject: [PATCH] fix: remove invalid workflows permission from Claude workflow MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Remove `workflows: write` which is not a valid permission scope in GitHub Actions. Valid permissions are: actions, checks, contents, deployments, id-token, issues, packages, pages, pull-requests, security-events, statuses. Note: Modifying workflow files requires a PAT with `workflow` scope, not the built-in GITHUB_TOKEN. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- .github/workflows/claude.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/claude.yml b/.github/workflows/claude.yml index e190f407..ac7449f1 100644 --- a/.github/workflows/claude.yml +++ b/.github/workflows/claude.yml @@ -24,7 +24,6 @@ jobs: issues: write # Required to post comments on issues id-token: write actions: read # Required for Claude to read CI results on PRs - workflows: write # Required to modify workflow files steps: - name: Checkout repository uses: actions/checkout@v4