Update daily caveman optimizer to allow bash: ["*"]#29126
Merged
Conversation
Agent-Logs-Url: https://github.com/github/gh-aw/sessions/39eda389-75f5-4e5f-8e61-9b7237bc0155 Co-authored-by: pelikhan <4175913+pelikhan@users.noreply.github.com>
Copilot created this pull request from a session on behalf of
pelikhan
April 29, 2026 13:56
View session
Copilot stopped work on behalf of
pelikhan due to an error
April 29, 2026 13:56
Contributor
There was a problem hiding this comment.
Pull request overview
Updates the Daily Caveman Optimizer agentic workflow configuration to allow all bash commands, and refreshes the compiled lockfile to reflect the new tool permissions.
Changes:
- Expanded
tools.bashallow-list in.github/workflows/daily-caveman-optimizer.mdto*(all commands). - Recompiled
.github/workflows/daily-caveman-optimizer.lock.yml, updating the generated allowed-tools list and switching the Claude CLI permission mode tobypassPermissions.
Show a summary per file
| File | Description |
|---|---|
| .github/workflows/daily-caveman-optimizer.md | Changes tools.bash from a restricted allow-list to ["*"] (YAML list form), enabling unrestricted bash for this workflow. |
| .github/workflows/daily-caveman-optimizer.lock.yml | Regenerated compiled workflow output reflecting unrestricted Bash tooling and --permission-mode bypassPermissions. |
Copilot's findings
Tip
Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
- Files reviewed: 2/2 changed files
- Comments generated: 0
Closed
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.
Summary
Updates the
bashtool configuration indaily-caveman-optimizer.mdfrom a restricted list of specific commands to["*"], allowing all bash commands.Changes
bashallow-list entries with["*"]in.github/workflows/daily-caveman-optimizer.md.github/workflows/daily-caveman-optimizer.lock.ymlSecurity Note
Per AGENTS.md, switching to
bash: ["*"]changes the permission mode fromacceptEditstobypassPermissions. In this mode, the MCP gateway'sallowed:filter in/tmp/gh-aw/mcp-config/mcp-servers.jsonbecomes the sole effective tool boundary. This is the expected and intended behavior.