patchrelay 0.80.1 → 0.80.2
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
|
@@ -579,6 +579,13 @@ export class IdleIssueReconciler {
|
|
|
579
579
|
projectId: issue.projectId,
|
|
580
580
|
linearIssueId: issue.linearIssueId,
|
|
581
581
|
...buildPrStateUpdates(pr, gateCheckStatus, gateCheckNames[0] ?? "verify"),
|
|
582
|
+
// A newly observed head is the poll-side equivalent of a lost
|
|
583
|
+
// pr_synchronize: the webhook path resets the repair budgets for
|
|
584
|
+
// the fresh head, so re-derivation must too — otherwise the new
|
|
585
|
+
// head inherits the old head's consumed budget and escalates
|
|
586
|
+
// earlier. Provenance clearing stays governed by
|
|
587
|
+
// mayClearFailureProvenance at the advance sites below.
|
|
588
|
+
...(headAdvanced ? { ciRepairAttempts: 0, queueRepairAttempts: 0 } : {}),
|
|
582
589
|
},
|
|
583
590
|
});
|
|
584
591
|
// Continue the pass with the refreshed row so later version-checked
|