From a03228c45539b6b5f013c6fc3ec93d824fd9f854 Mon Sep 17 00:00:00 2001 From: MHSanaei Date: Fri, 25 Sep 2026 19:19:50 +0200 Subject: [PATCH] ci: update Claude workflow model settings Use Claude Opus 5.5 with high effort for issue analysis and PR reviews. --- .github/workflows/claude-issue-analyst.yml | 4 ++-- .github/workflows/claude-pr-review.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/claude-issue-analyst.yml b/.github/workflows/claude-issue-analyst.yml index 3d7edf554..76c18a097 100644 --- a/.github/workflows/claude-issue-analyst.yml +++ b/.github/workflows/claude-issue-analyst.yml @@ -44,8 +44,8 @@ jobs: claude_code_oauth_token: ${{ secrets.CLAUDE_CODE_OAUTH_TOKEN }} allowed_non_write_users: "*" claude_args: | - --model claude-opus-5 - --effort xhigh + --model claude-opus-5.5 + --effort high --max-turns 300 --allowedTools "Bash(gh label list:*),Bash(gh issue view:*),Bash(gh issue list:*),Bash(gh issue comment ${{ github.event.issue.number }}:*),Bash(gh issue edit ${{ github.event.issue.number }} --add-label:*),Bash(gh issue edit ${{ github.event.issue.number }} --remove-label:*),Bash(gh issue edit ${{ github.event.issue.number }} --title:*),Bash(gh issue close ${{ github.event.issue.number }}:*),Bash(gh search issues:*),Bash(gh search commits:*),Bash(gh search prs:*),Bash(gh pr view:*),Bash(gh pr diff:*),Bash(gh pr list:*),Bash(gh release list:*),Bash(gh release view:*),Bash(git log:*),Bash(git show:*),Bash(git blame:*),Bash(git ls-tree:*),Bash(git tag:*),Read,Glob,Grep,Write(//tmp/**),Edit(//tmp/**)" --disallowedTools "Read(//**/.git/**),Edit(//**/.git/**)" diff --git a/.github/workflows/claude-pr-review.yml b/.github/workflows/claude-pr-review.yml index e7ef3af73..7420f59f1 100644 --- a/.github/workflows/claude-pr-review.yml +++ b/.github/workflows/claude-pr-review.yml @@ -118,8 +118,8 @@ jobs: # allowedTools only pre-approves; it denies nothing. Only the deny list # stops the review executing what it just checked out, or delegating. claude_args: | - --model claude-opus-5 - --effort xhigh + --model claude-opus-5.5 + --effort high --max-turns 300 --allowedTools "mcp__github_inline_comment__create_inline_comment,Bash(gh api:*),Bash(gh pr view:*),Bash(gh pr diff:*),Bash(gh pr comment ${{ env.PR }}:*),Bash(grep:*),Bash(rg:*),Bash(ls:*),Bash(find:*),Bash(sed:*),Bash(git log:*),Bash(git show:*),Bash(git diff:*),Bash(git blame:*),Bash(go doc:*),Bash(go env:*),Read,Glob,Grep,WebFetch,WebSearch" --disallowedTools "Agent,Bash(go build:*),Bash(go run:*),Bash(go test:*),Bash(go generate:*),Bash(go install:*),Bash(make:*),Bash(npm:*),Bash(npx:*),Bash(pnpm:*),Bash(yarn:*),Bash(node:*),Bash(bash:*),Bash(sh:*),Bash(docker:*),Bash(chmod:*),Edit,Write,NotebookEdit"