@yemi33/minions 0.1.1745 → 0.1.1746
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +5 -0
- package/engine/copilot-models.json +1 -1
- package/engine/lifecycle.js +12 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/engine/lifecycle.js
CHANGED
|
@@ -1629,6 +1629,18 @@ function updatePrAfterFix(pr, project, source, options = {}, legacyDispatchId =
|
|
|
1629
1629
|
log('warn', `Updated ${pr.id} → recorded no-op ${cause} fix attempt ${record.count}${record.paused ? ' (paused)' : ''}; PR branch was unchanged`);
|
|
1630
1630
|
return prs;
|
|
1631
1631
|
}
|
|
1632
|
+
// Issue #2096: detectPrFixBranchChange returns three states; null means
|
|
1633
|
+
// detection could not determine whether the branch advanced (missing
|
|
1634
|
+
// baseline, fetch failed, worktree gone). Treat that as a no-op attempt
|
|
1635
|
+
// so the pause-after-N counter eventually engages, but do NOT mark the
|
|
1636
|
+
// automation cause handled — a future tick with working detection must
|
|
1637
|
+
// be free to re-dispatch.
|
|
1638
|
+
if (explicitlyChangedBranch && options.branchChange?.changed === null) {
|
|
1639
|
+
const record = recordPrNoOpFixAttempt(target, cause, source, options.dispatchItem, options.branchChange, options.config);
|
|
1640
|
+
result = { noOp: true, cause, paused: !!record.paused, count: record.count, indeterminate: true };
|
|
1641
|
+
log('warn', `Updated ${pr.id} → recorded indeterminate ${cause} fix attempt ${record.count}${record.paused ? ' (paused)' : ''}; PR branch advance could not be verified${options.branchChange?.reason ? ` (${options.branchChange.reason})` : ''}`);
|
|
1642
|
+
return prs;
|
|
1643
|
+
}
|
|
1632
1644
|
clearPrNoOpFixAttempt(target, cause);
|
|
1633
1645
|
if (source === 'pr-human-feedback') {
|
|
1634
1646
|
const clearPendingFix = shouldClearHumanFeedbackPendingFix(target, pr, automationCauseKey);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yemi33/minions",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1746",
|
|
4
4
|
"description": "Multi-agent AI dev team that runs from ~/.minions/ — five autonomous agents share a single engine, dashboard, and knowledge base",
|
|
5
5
|
"bin": {
|
|
6
6
|
"minions": "bin/minions.js"
|