chore: snapshot before SDK upgrade

Includes pending stale-case-reminder days fix (3→30) alongside
the backup commit, since both will be preserved by the same tag.
This commit is contained in:
2026-05-26 12:13:52 +00:00
parent 73e37df129
commit a8999b70c2
2 changed files with 2 additions and 2 deletions

View File

@@ -161,7 +161,7 @@ export default {
{ {
jobKey: "stale-case-reminder", jobKey: "stale-case-reminder",
displayName: "תזכורת תיקים תקועים", displayName: "תזכורת תיקים תקועים",
description: "מזהה תיקים שלא עודכנו 3+ ימים ומוסיף תגובה ל-issue", description: "מזהה תיקים שלא עודכנו 30+ ימים ומוסיף תגובה ל-issue",
schedule: "0 8 * * *", schedule: "0 8 * * *",
}, },
{ {

View File

@@ -715,7 +715,7 @@ const plugin = definePlugin({
let resp: Awaited<ReturnType<typeof ctx.http.fetch>>; let resp: Awaited<ReturnType<typeof ctx.http.fetch>>;
try { try {
resp = await ctx.http.fetch(`${apiBase}/api/cases/stale?days=3`); resp = await ctx.http.fetch(`${apiBase}/api/cases/stale?days=30`);
} catch (err) { } catch (err) {
ctx.logger.error("stale-case-reminder: fetch failed", { ctx.logger.error("stale-case-reminder: fetch failed", {
error: String(err), error: String(err),