Skip to content

Commit 475940e

Browse files
committed
ci: grant write perms to disabled Claude Code Review workflow
The auto-review on PR #637 ran for 7m13s and exited successfully, but no review comment was posted. Job log on the prior run #640 showed "No buffered inline comments", suggesting the action's post path silently no-op'd. Workflow GITHUB_TOKEN had only read on pull-requests and issues, so any fallback gh post would also have failed. Grant pull-requests: write and issues: write so a future re-enable posts comments correctly. The workflow stays in .disable state. https://claude.ai/code/session_01UCYhQp5BYJRzWEbxCanHrZ
1 parent 07cb969 commit 475940e

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/claude-code-review.yml.disable

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ jobs:
2121
runs-on: ubuntu-latest
2222
permissions:
2323
contents: read
24-
pull-requests: read
25-
issues: read
24+
pull-requests: write
25+
issues: write
2626
id-token: write
2727

2828
steps:

0 commit comments

Comments
 (0)