From a8999b70c274e69b1ef3af5e2eef6a4f3b5ba296 Mon Sep 17 00:00:00 2001 From: Chaim Marcus Date: Tue, 26 May 2026 12:13:52 +0000 Subject: [PATCH] chore: snapshot before SDK upgrade MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Includes pending stale-case-reminder days fix (3→30) alongside the backup commit, since both will be preserved by the same tag. --- src/manifest.ts | 2 +- src/worker.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/manifest.ts b/src/manifest.ts index b8e1228..4270bef 100644 --- a/src/manifest.ts +++ b/src/manifest.ts @@ -161,7 +161,7 @@ export default { { jobKey: "stale-case-reminder", displayName: "תזכורת תיקים תקועים", - description: "מזהה תיקים שלא עודכנו 3+ ימים ומוסיף תגובה ל-issue", + description: "מזהה תיקים שלא עודכנו 30+ ימים ומוסיף תגובה ל-issue", schedule: "0 8 * * *", }, { diff --git a/src/worker.ts b/src/worker.ts index 8c07e45..a282432 100644 --- a/src/worker.ts +++ b/src/worker.ts @@ -715,7 +715,7 @@ const plugin = definePlugin({ let resp: Awaited>; 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) { ctx.logger.error("stale-case-reminder: fetch failed", { error: String(err),