patchrelay 0.41.5 → 0.41.6
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/dist/build-info.json
CHANGED
|
@@ -101,7 +101,7 @@ function buildFacts(issue, selected) {
|
|
|
101
101
|
facts.push({ text: "awaiting review", color: "yellow" });
|
|
102
102
|
}
|
|
103
103
|
if (issue.factoryState === "awaiting_queue") {
|
|
104
|
-
facts.push({ text: "
|
|
104
|
+
facts.push({ text: "downstream ready", color: "cyan" });
|
|
105
105
|
}
|
|
106
106
|
// Check status — compact
|
|
107
107
|
const checksFact = prChecksFact(issue);
|
|
@@ -401,7 +401,7 @@ function buildFactSegments(issue, issueContext) {
|
|
|
401
401
|
&& (isAwaitingReviewState(issue.prReviewState) || (!issue.prReviewState && issue.factoryState === "pr_open")))
|
|
402
402
|
facts.push([{ text: "awaiting review", color: "yellow" }]);
|
|
403
403
|
if (issue.factoryState === "awaiting_queue")
|
|
404
|
-
facts.push([{ text: "
|
|
404
|
+
facts.push([{ text: "downstream ready", color: "cyan" }]);
|
|
405
405
|
if (issue.waitingReason && issue.sessionState === "waiting_input")
|
|
406
406
|
facts.push([{ text: issue.waitingReason, color: "yellow" }]);
|
|
407
407
|
const checks = prChecksFact({
|