ci: add PaC-driven AgentRun JD01 v02 pipeline

This commit is contained in:
Codex
2026-07-05 10:54:34 +00:00
parent d5a97318a3
commit 714a61d226
5 changed files with 1325 additions and 12 deletions
+4
View File
@@ -69,6 +69,10 @@ export async function runPlatformInfraCommand(config: UniDeskConfig, args: strin
const { runPlatformInfraGiteaCommand } = await import("../platform-infra-gitea");
return await runPlatformInfraGiteaCommand(config, args.slice(1));
}
if (target === "pipelines-as-code" || target === "pac") {
const { runPlatformInfraPipelinesAsCodeCommand } = await import("../platform-infra-pipelines-as-code");
return await runPlatformInfraPipelinesAsCodeCommand(config, args.slice(1));
}
if (target !== "sub2api") return unsupported(args);
if (action === "plan" || action === undefined) {
const planArgs = args.slice(2);