Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/claude-pr-review.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
claude_args: >-
--max-turns 40
--max-budget-usd 5
--model claude-opus-5
--model claude-opus-5-5
--allowedTools "mcp__github_inline_comment__create_inline_comment,Bash(gh pr comment:*),Bash(gh pr diff:*),Bash(gh pr view:*)"
prompt: |
REPO: ${{ github.repository }}
Expand Down Expand Up @@ -108,7 +108,7 @@ jobs:
claude_args: >-
--max-turns 40
--max-budget-usd 5
--model claude-opus-5
--model claude-opus-5-5
--allowedTools "mcp__github_inline_comment__create_inline_comment,Bash(gh pr comment:*),Bash(gh pr diff:*),Bash(gh pr view:*),Bash(go build:*),Bash(go vet:*),Bash(go mod tidy:*),Bash(git diff:*),Bash(golangci-lint:*)"
prompt: |
REPO: ${{ github.repository }}
Expand Down
4 changes: 2 additions & 2 deletions bin/suggest-version-ai.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
# - ANTHROPIC_API_KEY: call Claude directly.
# - OP_ANTHROPIC_API_KEY_REF: 1Password reference (default below; override if your item path differs).
#
# Optional: CLAUDE_MODEL (default: claude-sonnet-4-6) — e.g. claude-opus-4-6.
# Optional: CLAUDE_MODEL (default: claude-sonnet-5)
#
# Requires: curl, jq; for 1Password: op CLI
# Usage: bin/suggest-version-ai.sh [base_ref] [-o release_notes.md]
Expand Down Expand Up @@ -95,7 +95,7 @@ BUMP: major|minor|patch
---CHANGELOG---
<markdown changelog here>"

CLAUDE_MODEL="${CLAUDE_MODEL:-claude-sonnet-4-6}"
CLAUDE_MODEL="${CLAUDE_MODEL:-claude-sonnet-5}"
DIFF_FILE=$(mktemp)
trap 'rm -f "$DIFF_FILE" "$RELEASE_NOTES_FILE" "$SUGGESTED_VERSION_FILE"' EXIT
printf '%s' "$DIFF" > "$DIFF_FILE"
Expand Down
Loading