[aw] Raise Daily yamllint Fixer turn budget to prevent max-runs exhaustion#42411
Merged
Conversation
Co-authored-by: pelikhan <4175913+pelikhan@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Fix workflow failure in daily yamllint fixer
[aw] Raise Daily yamllint Fixer turn budget to prevent max-runs exhaustion
Jun 30, 2026
Copilot stopped reviewing on behalf of
pelikhan due to an error
June 30, 2026 05:18
Contributor
There was a problem hiding this comment.
Pull request overview
Note
Copilot was unable to run its full agentic suite in this review.
Increase the allowed number of agent turns/runs for the “daily yamllint fixer” workflow to reduce premature stopping during longer fix sessions.
Changes:
- Bump
max-turnsfrom 60 → 120 in the workflow source. - Regenerate/update the workflow lock file to reflect
maxRuns/GH_AW_MAX_TURNS= 120.
Show a summary per file
| File | Description |
|---|---|
| .github/workflows/daily-yamllint-fixer.md | Updates the workflow config to allow more agent turns. |
| .github/workflows/daily-yamllint-fixer.lock.yml | Updates generated/locked workflow output so runtime settings match the new turn limit. |
Review details
Tip
Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
- Files reviewed: 2/2 changed files
- Comments generated: 1
- Review effort level: Low
Comment on lines
15
to
+17
| engine: | ||
| id: claude | ||
| max-turns: 60 | ||
| max-turns: 120 |
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.
The Daily yamllint Fixer workflow was failing in the agent phase despite successful yamllint setup/execution because the run exhausted its LLM invocation budget (
max_runs_exceededat 60/60). This change increases the agent turn budget so the fixer can complete its analysis/edit loop on normal daily runs.Workflow budget update
max-turnsindaily-yamllint-fixer.mdfrom60to120.Generated workflow sync
daily-yamllint-fixer.lock.ymlso the runtime harness now launches with the updated--max-turns 120value.