From 4f9667c4bb2fed7fdd87e7eceab3acfd248ccf9f Mon Sep 17 00:00:00 2001 From: Dax Raad Date: Tue, 24 Mar 2026 23:55:10 -0400 Subject: [PATCH] Change issue close reason from not_planned to completed --- script/github/close-issues.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script/github/close-issues.ts b/script/github/close-issues.ts index f5470e2524..7b38bf6758 100755 --- a/script/github/close-issues.ts +++ b/script/github/close-issues.ts @@ -38,7 +38,7 @@ async function close(num: number) { const patch = await fetch(base, { method: "PATCH", headers, - body: JSON.stringify({ state: "closed", state_reason: "not_planned" }), + body: JSON.stringify({ state: "closed", state_reason: "completed" }), }) if (!patch.ok) throw new Error(`Failed to close #${num}: ${patch.status} ${patch.statusText}`)