From 142f275ef4181befaa32e66f7c86ce630c2c8769 Mon Sep 17 00:00:00 2001 From: Andreas Ronneseth Date: Tue, 19 May 2026 14:12:41 -0700 Subject: [PATCH] fix(workflows): bump max_turns to 20 and don't fail CI on review errors MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Claude was hitting the turn limit on larger diffs before it could submit the review. Bump to 20 for headroom on large PRs. Also add continue-on-error so Claude failures never block the CI check — the review is advisory, not a gate. Co-authored-by: Cursor --- .github/workflows/claude-review.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/claude-review.yaml b/.github/workflows/claude-review.yaml index ad2726b..fd21ee6 100644 --- a/.github/workflows/claude-review.yaml +++ b/.github/workflows/claude-review.yaml @@ -16,7 +16,7 @@ on: description: "Max conversation turns" required: false type: number - default: 5 + default: 20 secrets: anthropic_api_key: required: true @@ -35,6 +35,7 @@ jobs: fetch-depth: 0 - uses: anthropics/claude-code-action@v1 + continue-on-error: true with: anthropic_api_key: ${{ secrets.anthropic_api_key }} github_token: ${{ secrets.ai_reviewer_github_token }}