fix(ci): pin release validation child ref

This commit is contained in:
Peter Steinberger
2026-04-29 01:30:51 +01:00
parent ceeb3a7398
commit 7229ec5e04
2 changed files with 3 additions and 3 deletions

View File

@@ -375,7 +375,7 @@ jobs:
fi
dispatch_and_wait openclaw-release-checks.yml \
-f ref="$TARGET_REF" \
-f ref="$TARGET_SHA" \
-f expected_sha="$TARGET_SHA" \
-f provider="$PROVIDER" \
-f mode="$MODE" \

View File

@@ -246,7 +246,7 @@ describe("registerPreActionHooks", () => {
expect(ensurePluginRegistryLoadedMock).toHaveBeenCalledWith({ scope: "all" });
});
it("skips broad plugin preload for json local agent runs", async () => {
it("loads plugins for json local agent runs", async () => {
await runPreAction({
parseArgv: ["agent"],
processArgv: ["node", "openclaw", "agent", "--local", "--message", "hi", "--json"],
@@ -257,7 +257,7 @@ describe("registerPreActionHooks", () => {
commandPath: ["agent", "hi"],
suppressDoctorStdout: true,
});
expect(ensurePluginRegistryLoadedMock).not.toHaveBeenCalled();
expect(ensurePluginRegistryLoadedMock).toHaveBeenCalledWith({ scope: "all" });
});
it("keeps setup alias and channels add manifest-first", async () => {