diff options
| author | hathach <[email protected]> | 2026-06-18 19:37:12 +0700 |
|---|---|---|
| committer | hathach <[email protected]> | 2026-06-18 19:37:12 +0700 |
| commit | e7b373ede2dc1ab7322d9687bc5ca87dd156e355 (patch) | |
| tree | 2cdfbdb6ba42719e9697195e082af085bd408778 | |
| parent | 17b38ffc2ad70e1c722df5b3dc5a8c49f7addefc (diff) | |
ci(review): run Claude PR review at max effort
Pass --effort max to the claude CLI in the auto-review workflow so PR
reviews run at maximum reasoning effort. Switch claude_args to a
multi-line block scalar for readability, keeping --max-turns 50 and
--model claude-opus-4-8 unchanged.
Co-Authored-By: Claude Fable 5 <[email protected]>
| -rw-r--r-- | .github/workflows/claude-code-review.yml | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/.github/workflows/claude-code-review.yml b/.github/workflows/claude-code-review.yml index 60cc4db4b..59019616f 100644 --- a/.github/workflows/claude-code-review.yml +++ b/.github/workflows/claude-code-review.yml @@ -53,5 +53,8 @@ jobs: # TEMPORARY: expose the full Claude transcript in the Actions log for # debugging. Revert to remove once done. show_full_output: true - claude_args: '--max-turns 50 --model claude-opus-4-8' + claude_args: | + --max-turns 50 + --model claude-opus-4-8 + --effort max # See https://github.com/anthropics/claude-code-action/blob/main/docs/usage.md |
