merge-steward 0.8.3 → 0.8.4
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/reconciler.js +2 -2
- package/package.json +1 -1
package/dist/reconciler.js
CHANGED
|
@@ -221,7 +221,7 @@ async function prepareEntry(ctx, entry, isHead, prevEntry) {
|
|
|
221
221
|
ctx.store.transition(entry.id, "validating", {
|
|
222
222
|
baseSha, ciRunId: runId, lastFailedBaseSha: null,
|
|
223
223
|
specBranch: specName, specSha, specBasedOn: isHead ? null : prevEntry.id,
|
|
224
|
-
}, `spec
|
|
224
|
+
}, `spec ready, CI ${runId.slice(0, 12)}`);
|
|
225
225
|
}
|
|
226
226
|
function describeMainBroken(failingChecks, pendingChecks) {
|
|
227
227
|
const parts = [];
|
|
@@ -247,7 +247,7 @@ async function checkValidation(ctx, entry, allActive, index) {
|
|
|
247
247
|
const sha = entry.specSha ?? entry.headSha;
|
|
248
248
|
const runId = await ctx.ci.triggerRun(branch, sha);
|
|
249
249
|
emit(ctx, entry, "ci_triggered", { ciRunId: runId });
|
|
250
|
-
ctx.store.transition(entry.id, "validating", { ciRunId: runId }, `CI triggered: ${runId}`);
|
|
250
|
+
ctx.store.transition(entry.id, "validating", { ciRunId: runId }, `CI triggered: ${runId.slice(0, 12)}`);
|
|
251
251
|
return;
|
|
252
252
|
}
|
|
253
253
|
const status = await ctx.ci.getStatus(entry.ciRunId);
|