ci: expand claude-code-action allowlist and enable progress tracking#501
Merged
kronosapiens merged 1 commit intomainfrom Apr 22, 2026
Merged
ci: expand claude-code-action allowlist and enable progress tracking#501kronosapiens merged 1 commit intomainfrom
kronosapiens merged 1 commit intomainfrom
Conversation
The previous allowlist ("Bash(pnpm:*),Bash(gh:*)") is treated as a
strict set — it silently dropped Edit, Write, Read, and the git-branch
commands Claude uses before committing. Re-list the file-ops tools
explicitly, add Bash(git:*) for branch creation, and enable
track_progress so @claude mentions get the eyes reaction and a live
sticky status comment.
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Follow-up to #500. The previous run on issue #498 still produced no branch or PR — logs (now visible thanks to
show_full_output: true) show 6 denials: fourgit checkout -b/git switch -cattempts and twoEditcalls ondocs/pages/framework/systems/index.md.Root causes:
--allowedToolsis treated as a strict allowlist in the Claude Code SDK, so setting it to onlyBash(pnpm:*),Bash(gh:*)silently droppedEdit,Write,Read, etc. The docs' own example re-lists them, which I missed.use_commit_signing: false, Claude uses rawgit checkout -bto create the working branch (MCP file ops only handle commits, not branching), soBash(git:*)is required.Also enables
track_progress: trueso@claudementions get the eyes reaction and a live sticky status comment — matching the UX in other repos.