From 8c0205a84ab225e6901eff92e6a589e8fc88b679 Mon Sep 17 00:00:00 2001 From: Nacai <111849193+B67687@users.noreply.github.com> Date: Fri, 17 Apr 2026 00:01:35 +0800 Subject: [PATCH] fix: align stale bot message with actual 60-day threshold (#22842) Co-authored-by: opencode-agent[bot] Co-authored-by: rekram1-node --- script/github/close-issues.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/script/github/close-issues.ts b/script/github/close-issues.ts index 7b38bf6758..e8f0573ebb 100755 --- a/script/github/close-issues.ts +++ b/script/github/close-issues.ts @@ -2,8 +2,7 @@ const repo = "anomalyco/opencode" const days = 60 -const msg = - "To stay organized issues are automatically closed after 90 days of no activity. If the issue is still relevant please open a new one." +const msg = `To stay organized issues are automatically closed after ${days} days of no activity. If the issue is still relevant please open a new one.` const token = process.env.GITHUB_TOKEN if (!token) {