@yemi33/minions 0.1.529 → 0.1.530
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 +2 -1
- package/engine/lifecycle.js +2 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/engine/lifecycle.js
CHANGED
|
@@ -708,7 +708,8 @@ function updatePrAfterReview(agentId, pr, project, config) {
|
|
|
708
708
|
? require('./github').checkLiveReviewStatus
|
|
709
709
|
: require('./ado').checkLiveReviewStatus;
|
|
710
710
|
const liveStatus = checkFn(pr, projectObj);
|
|
711
|
-
if (
|
|
711
|
+
// Use live status only if it's a decisive verdict (not 'pending' — review may not have propagated yet)
|
|
712
|
+
if (liveStatus && liveStatus !== 'pending') postReviewStatus = liveStatus;
|
|
712
713
|
}
|
|
713
714
|
} catch (e) { log('warn', `Post-review status check for ${pr.id}: ${e.message}`); }
|
|
714
715
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yemi33/minions",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.530",
|
|
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"
|