Skip to content

Commit 06ffef8

Browse files
committed
fix(ci): repair zalouser CI failures
1 parent c6a8ab6 commit 06ffef8

File tree

2 files changed

+29
-4
lines changed

2 files changed

+29
-4
lines changed

.secrets.baseline

Lines changed: 24 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,6 +179,29 @@
179179
"line_number": 15
180180
}
181181
],
182+
"appcast.xml": [
183+
{
184+
"type": "Base64 High Entropy String",
185+
"filename": "appcast.xml",
186+
"hashed_secret": "abb0380989460de3f211d60628b439de7ebcd482",
187+
"is_verified": false,
188+
"line_number": 364
189+
},
190+
{
191+
"type": "Base64 High Entropy String",
192+
"filename": "appcast.xml",
193+
"hashed_secret": "6e1ba26139ac4e73427e68a7eec2abf96bcf1fd4",
194+
"is_verified": false,
195+
"line_number": 583
196+
},
197+
{
198+
"type": "Base64 High Entropy String",
199+
"filename": "appcast.xml",
200+
"hashed_secret": "c0baa9660a8d3b11874c63a535d8369f4a8fa8fa",
201+
"is_verified": false,
202+
"line_number": 722
203+
}
204+
],
182205
"apps/android/app/src/test/java/ai/openclaw/android/node/AppUpdateHandlerTest.kt": [
183206
{
184207
"type": "Hex High Entropy String",
@@ -13011,5 +13034,5 @@
1301113034
}
1301213035
]
1301313036
},
13014-
"generated_at": "2026-03-08T03:31:44Z"
13037+
"generated_at": "2026-03-08T05:05:36Z"
1301513038
}

extensions/zalouser/src/monitor.group-gating.test.ts

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,9 @@ function installRuntime(params: {
8383
};
8484
});
8585
const readAllowFromStore = vi.fn(async () => []);
86-
const readSessionUpdatedAt = vi.fn(() => undefined);
86+
const readSessionUpdatedAt = vi.fn(
87+
(_params?: { storePath: string; sessionKey: string }): number | undefined => undefined,
88+
);
8789
const buildAgentSessionKey = vi.fn(
8890
(input: {
8991
agentId: string;
@@ -452,8 +454,8 @@ describe("zalouser monitor group mention gating", () => {
452454
const { dispatchReplyWithBufferedBlockDispatcher, readSessionUpdatedAt } = installRuntime({
453455
commandAuthorized: false,
454456
});
455-
readSessionUpdatedAt.mockImplementation(({ sessionKey }: { sessionKey: string }) =>
456-
sessionKey === "agent:main:zalouser:group:321" ? 123 : undefined,
457+
readSessionUpdatedAt.mockImplementation((input?: { storePath: string; sessionKey: string }) =>
458+
input?.sessionKey === "agent:main:zalouser:group:321" ? 123 : undefined,
457459
);
458460
const account = createAccount();
459461
await __testing.processMessage({

0 commit comments

Comments
 (0)