fix: add concurrency protection to action sync workflows (#451)

* fix: add concurrency protection to action sync workflows

* style: fix formatting in action/modes.ts

---------

Co-authored-by: pullfrog[bot] <226033991+pullfrog[bot]@users.noreply.github.com>
This commit is contained in:
pullfrog[bot]
2026-03-05 23:44:55 +00:00
committed by pullfrog[bot]
parent 5684cbef77
commit 8bac460177
40 changed files with 221 additions and 122 deletions
+2 -7
View File
@@ -1,10 +1,5 @@
import type { AgentResult, TestRunnerOptions, ValidationCheck } from "../utils.ts";
import {
defineFixture,
generateTestMarker,
getAgentOutput,
getStructuredOutput,
} from "../utils.ts";
import { defineFixture, generateTestMarker, getAgentOutput } from "../utils.ts";
/**
* delegate-two-phase — orchestrator runs two sequential delegations where
@@ -44,7 +39,7 @@ After both phases complete, call set_output with: "WRITTEN=<marker>,READ=<what_p
);
function validator(result: AgentResult): ValidationCheck[] {
const output = getStructuredOutput(result);
const output = result.structuredOutput;
const agentOutput = getAgentOutput(result);
const secret = marker.value;