mirror of
https://github.com/johannesjo/super-productivity.git
synced 2026-01-23 02:36:05 +00:00
fix(ci): grant write permissions to Claude Code action
The Claude Code GitHub Action was failing with 403 errors when trying to create comments on issues due to read-only permissions. Updated contents, pull-requests, and issues permissions from read to write.
This commit is contained in:
parent
f421d2387a
commit
ce4e61fd94
1 changed files with 3 additions and 3 deletions
6
.github/workflows/claude.yml
vendored
6
.github/workflows/claude.yml
vendored
|
|
@ -19,9 +19,9 @@ jobs:
|
|||
(github.event_name == 'issues' && (contains(github.event.issue.body, '@claude') || contains(github.event.issue.title, '@claude')))
|
||||
runs-on: ubuntu-latest
|
||||
permissions:
|
||||
contents: read
|
||||
pull-requests: read
|
||||
issues: read
|
||||
contents: write
|
||||
pull-requests: write
|
||||
issues: write
|
||||
id-token: write
|
||||
actions: read # Required for Claude to read CI results on PRs
|
||||
steps:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue