@yemi33/minions 0.1.2000 → 0.1.2001

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.
Files changed (2) hide show
  1. package/engine/github.js +7 -0
  2. package/package.json +1 -1
package/engine/github.js CHANGED
@@ -869,6 +869,13 @@ async function pollPrStatus(config) {
869
869
  ].filter(Boolean).join('\n') || buildFailReason, 80);
870
870
  } else if (allDone && allPassed) {
871
871
  buildStatus = 'passing';
872
+ } else if (allDone) {
873
+ // Terminal-but-not-passing conclusions (cancelled, action_required,
874
+ // stale, etc.) — map to 'none' rather than 'failing'. These are not
875
+ // actionable build failures, so we deliberately do not block merge or
876
+ // dispatch build-fix agents. Previously fell through to 'running'
877
+ // forever (P-bf02-github-cancelled-stuck).
878
+ buildStatus = 'none';
872
879
  } else {
873
880
  buildStatus = 'running';
874
881
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yemi33/minions",
3
- "version": "0.1.2000",
3
+ "version": "0.1.2001",
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"