opencode-magi 0.0.0-dev-20260728234658 → 0.0.0-dev-20260729013549
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.
|
@@ -410,7 +410,8 @@ async function waitMergeQueue(enqueuedAt, leftMergeQueue = false, retries = 0) {
|
|
|
410
410
|
return "CONFLICT";
|
|
411
411
|
}
|
|
412
412
|
const removedFromQueue = timelineItems.nodes?.at(-1);
|
|
413
|
-
if (removedFromQueue?.reason === "
|
|
413
|
+
if ((removedFromQueue?.reason === "checks_timed_out" ||
|
|
414
|
+
removedFromQueue?.reason === "failed_checks") &&
|
|
414
415
|
Date.parse(removedFromQueue.createdAt) >= Date.parse(enqueuedAt)) {
|
|
415
416
|
if (retries >= this.config.review.checks.retryFailedJobs)
|
|
416
417
|
throw new MagiError("blocked", `PR left the merge queue after failed checks exceeded ${retries} retries.`);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "opencode-magi",
|
|
3
|
-
"version": "0.0.0-dev-
|
|
3
|
+
"version": "0.0.0-dev-20260729013549",
|
|
4
4
|
"description": "Multi-agent PR review and merge orchestration plugin for OpenCode.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Hirotomo Yamada <hirotomo.yamada@avap.co.jp>",
|