[deep-report] Raise Avenger max-turns to 50 to prevent max-turn exits#35789
Merged
Conversation
4 tasks
Co-authored-by: gh-aw-bot <259018956+gh-aw-bot@users.noreply.github.com>
Contributor
|
Hey
If you'd like a hand finishing this up, assign the following prompt to your coding agent:
|
Copilot
AI
changed the title
[WIP] Update max turns for Avenger to 50
[deep-report] Raise Avenger max-turns to 50 to prevent max-turn exits
May 29, 2026
Contributor
There was a problem hiding this comment.
Pull request overview
This PR raises the Avenger scheduled CI fixer’s Claude turn budget to reduce isMaxTurnsExit=true failures during longer repair/triage runs.
Changes:
- Updates Avenger workflow frontmatter from
max-turns: 25to50. - Regenerates the compiled lock workflow with
--max-turns 50andGH_AW_MAX_TURNS: 50.
Show a summary per file
| File | Description |
|---|---|
.github/workflows/avenger.md |
Raises the configured Claude turn limit for Avenger. |
.github/workflows/avenger.lock.yml |
Reflects the regenerated runtime workflow for the new max-turns setting. |
Copilot's findings
Tip
Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
- Files reviewed: 2/2 changed files
- Comments generated: 1
| engine: | ||
| id: claude | ||
| max-turns: 25 | ||
| max-turns: 50 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Avenger has been consistently exiting on
isMaxTurnsExit=truebecause its CI triage flow exceeds the current 25-turn ceiling before reaching actionable failure analysis. This change increases the turn budget to unblock completion of the scheduled repair loop.Workflow frontmatter update
.github/workflows/avenger.mdfrom25to50.Compiled workflow regeneration
.github/workflows/avenger.lock.ymlso runtime invocation and environment wiring reflect the new limit (including--max-turns 50andGH_AW_MAX_TURNS: 50).