From 135c7e9f7bb52c63dec1e3ce4eb506a7bbe754f6 Mon Sep 17 00:00:00 2001 From: Daniel Sutton <45313566+d-cs@users.noreply.github.com> Date: Fri, 19 Jun 2026 21:27:47 +0100 Subject: [PATCH] ci: raise CLAUDE.md audit turn limit and pin Opus 4.8 (#3999) ## Summary The CLAUDE.md audit job (`.github/workflows/claude-md-audit.yml`) frequently hits its 15-turn cap before it finishes reviewing a PR, so the job fails without posting a verdict. For example, the audit job failed on [this run](https://github.com/triggerdotdev/trigger.dev/actions/runs/27837408945/job/82390460772?pr=3990). This raises `--max-turns` from 15 to 25 to give the review room to complete, and pins `--model claude-opus-4-8` (the job previously inherited the action default model). --- .github/workflows/claude-md-audit.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/claude-md-audit.yml b/.github/workflows/claude-md-audit.yml index e6d459fd9..215e7ac23 100644 --- a/.github/workflows/claude-md-audit.yml +++ b/.github/workflows/claude-md-audit.yml @@ -43,7 +43,8 @@ jobs: allowed_bots: "devin-ai-integration[bot]" claude_args: | - --max-turns 15 + --max-turns 25 + --model claude-opus-4-8 --allowedTools "Read,Glob,Grep,Bash(git diff:*)" prompt: |