From 9958a2bca61e488327896e6a2d25c4809afca04e Mon Sep 17 00:00:00 2001 From: Claude Date: Fri, 26 Dec 2025 21:21:19 +0000 Subject: [PATCH] Update Claude action permissions to allow editing workflows Change actions permission from read to write to enable Claude to edit GitHub Action workflow files. --- .github/workflows/claude.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/claude.yml b/.github/workflows/claude.yml index 04de987..9a07802 100644 --- a/.github/workflows/claude.yml +++ b/.github/workflows/claude.yml @@ -23,7 +23,7 @@ jobs: pull-requests: write issues: write id-token: write - actions: read # Required for Claude to read CI results on PRs + actions: write # Required for Claude to read CI results and edit workflows steps: - name: Checkout repository uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6 @@ -38,7 +38,7 @@ jobs: # This is an optional setting that allows Claude to read CI results on PRs additional_permissions: | - actions: read + actions: write # Optional: Give a custom prompt to Claude. If this is not specified, Claude will perform the instructions specified in the comment that tagged it. # prompt: 'Update the pull request description to include a summary of changes.'