Conversation
Agent-Logs-Url: https://github.com/githubnext/autoloop/sessions/c188f294-d28e-43f5-a461-6d3cfcace06d Co-authored-by: mrjf <180956+mrjf@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Fix gate iteration acceptance on CI green with retry loop
Spec a CI-green gate with bounded fix-and-retry loop for iteration acceptance
Apr 22, 2026
Contributor
|
@copilot resolve the merge conflicts in this pull request |
…ation-acceptance # Conflicts: # workflows/autoloop.md Co-authored-by: mrjf <180956+mrjf@users.noreply.github.com>
Contributor
Author
Merged Warning Firewall rules blocked me from connecting to one or more addresses (expand for details)I tried to connect to the following addresses, but was blocked by firewall rules:
If you need me to access, download, or install something from one of these locations, you can either:
|
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.
Today an iteration is marked ✅ Accepted as soon as the sandbox-computed metric improves, but the agent sandbox often can't install project toolchains (
tsc,cargo,pytest, …) so self-evaluation rubber-stamps broken commits onto the long-running branch with no revert or retry. Acceptance needs to be gated on real CI on the pushed HEAD, with fix-and-retry preferred over revert.This PR is the spec change in
workflows/autoloop.mdonly. The shared failure-signature extractor is deferred to sibling issue #34 (scheduler extraction).Step 5 split into 5a / 5b / 5c
gh pr checks --watchand reduce all check-runs to a singlesuccess/failure/pendingvia the awk pipeline from the issue.> 0.pendingis explicitly handled: never accepted, re-runs the watch step, falls through toci-timeoutif it persists past the wall-clock cap.Machine State vocabulary
pause_reason: documentsci-fix-exhausted: <signature>,stuck in CI fix loop: <signature>,ci-timeout.recent_statuses: addsci-fix-exhaustedas the coarse bucket for any CI-gate failure mode (fine-grained reason lives inpause_reason). Existing parser accepts arbitrary status words — no scheduler code change needed.CI fix attemptsfield.Coordination
New subsection notes that PR-health-keeper / Evergreen workflows can pick up paused Autoloop PRs via the structured
pause_reasonfield — same handoff as for human-authored PRs.Preserved unchanged
The "metric did not improve" and "evaluation could not run" branches of Step 5 are untouched.