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.
@@ -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 ${specName} ready, CI ${runId}`);
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);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "merge-steward",
3
- "version": "0.8.3",
3
+ "version": "0.8.4",
4
4
  "description": "Serial merge queue for GitHub — rebase, CI-gate, and merge PRs one at a time",
5
5
  "type": "module",
6
6
  "repository": {