You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Bumps both Claude GitHub Actions workflows from claude-code-action@beta to @v1.0.110.
Changes
.github/workflows/claude.yml and .github/workflows/claude-auto-review.yml: pinned to anthropics/claude-code-action@v1.0.110.
Folded the v0 inputs (model, allowed_tools, custom_instructions) into the new claude_args (--model, --allowedTools, --append-system-prompt).
Renamed direct_prompt -> prompt in the auto-review workflow.
Dropped fallback_model (no v1 equivalent) and timeout_minutes (now a job-level timeout-minutes: 60).
Added ANTHROPIC_DEFAULT_HAIKU_MODEL: us.anthropic.claude-haiku-4-5-20251001-v1:0 to each workflow's top-level env, replacing the implicit Claude 3.5 Haiku background model that hits Bedrock EOL on 2026-06-19.
Triggers, if: conditions, the actor permission check, checkout, and AWS credential steps are unchanged.
LGTM. The migration from @beta to @v1.0.110 is clean and the input mappings are correct.
A few observations:
--append-system-prompt quoting (.github/workflows/claude.yml): The multi-sentence value is on a single line with no shell escaping. If any sentence ever contains a double-quote character, claude_args parsing could break. This is fine as-is but worth being aware of for future edits.
No --fallback-model: The PR description notes there's no v1 equivalent, so dropping it makes sense. Just confirming there's no degraded behavior if Opus quota is hit — the ANTHROPIC_DEFAULT_HAIKU_MODEL env var covers the background/tool-use model but not a primary model fallback. Acceptable tradeoff given the EOL deadline.
Pin version: Pinning to @v1.0.110 is more reproducible than @beta, which is good. Consider whether you want to track a major tag like @v1 in the future for automatic patches, or stay fully pinned for stability. Both are reasonable choices.
auto-reviewpermissions block: The auto-review job has pull-requests: read — this is sufficient for reading the diff and creating reviews via the MCP tools (which use the app token), so that's correct.
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
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.
Bumps both Claude GitHub Actions workflows from
claude-code-action@betato@v1.0.110.Changes
.github/workflows/claude.ymland.github/workflows/claude-auto-review.yml: pinned toanthropics/claude-code-action@v1.0.110.model,allowed_tools,custom_instructions) into the newclaude_args(--model,--allowedTools,--append-system-prompt).direct_prompt->promptin the auto-review workflow.fallback_model(no v1 equivalent) andtimeout_minutes(now a job-leveltimeout-minutes: 60).ANTHROPIC_DEFAULT_HAIKU_MODEL: us.anthropic.claude-haiku-4-5-20251001-v1:0to each workflow's top-levelenv, replacing the implicit Claude 3.5 Haiku background model that hits Bedrock EOL on 2026-06-19.Triggers,
if:conditions, the actor permission check, checkout, and AWS credential steps are unchanged.