Fix test quarantine agent budgeting#65977
Merged
Merged
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
This PR updates the agent instructions and generated workflow artifacts so the test quarantine agent performs budget planning first, then executes quarantine/re-quarantine actions before unquarantines.
Changes:
- Reordered/rewrote
test-quarantine.mdto defer PR/issue creation until after budget planning, and added an explicit “Execute Actions” part. - Recompiled agent workflows/locks with newer
gh-awtooling (v0.63.1), updating safe-outputs constraints and various runtime behaviors. - Updated the gh-aw actions lock to include the new setup action version.
Reviewed changes
Copilot reviewed 4 out of 4 changed files in this pull request and generated 4 comments.
| File | Description |
|---|---|
| .github/workflows/test-quarantine.md | Reorders instructions to plan budgets before taking actions; introduces explicit execution steps. |
| .github/workflows/test-quarantine.lock.yml | Regenerated workflow with gh-aw v0.63.1 and updated safe-outputs/tooling integration. |
| .github/workflows/issue-triage-agent.lock.yml | Regenerated workflow with gh-aw v0.63.1 and updated safe-outputs/tooling integration. |
| .github/aw/actions-lock.json | Adds the github/gh-aw-actions/setup@v0.63.1 lock entry. |
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 agent reads its .md file sequentially - we were telling it create Unquarantine PRs before telling to create Quarantine PRs, and the "budgeting" section came after both of those instructions (so it got completely ignored). Fix that by giving it budgeting instructions first, then telling it to create Quarantine PRs, then Unquarantine PRs.