patchrelay 0.41.3 → 0.41.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/build-info.json
CHANGED
|
@@ -120,6 +120,7 @@ export class DesiredStageRecorder {
|
|
|
120
120
|
triggerEvent: params.normalized.triggerEvent,
|
|
121
121
|
delegated,
|
|
122
122
|
});
|
|
123
|
+
const terminalRunRelease = effectiveRunRelease.release && terminal;
|
|
123
124
|
const commitIssueUpdate = () => {
|
|
124
125
|
const record = this.db.issues.upsertIssue({
|
|
125
126
|
projectId: params.project.id,
|
|
@@ -148,6 +149,7 @@ export class DesiredStageRecorder {
|
|
|
148
149
|
...(clearPending ? { pendingRunType: null, pendingRunContextJson: null } : {}),
|
|
149
150
|
...(agentSessionId !== undefined ? { agentSessionId } : {}),
|
|
150
151
|
...(effectiveRunRelease.release ? { activeRunId: null } : {}),
|
|
152
|
+
...(terminalRunRelease ? { factoryState: "done", pendingRunType: null, pendingRunContextJson: null } : {}),
|
|
151
153
|
...(blockerPausedImplementation ? { factoryState: "delegated" } : {}),
|
|
152
154
|
...(undelegation.factoryState ? { factoryState: undelegation.factoryState } : {}),
|
|
153
155
|
});
|