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),