summaryrefslogtreecommitdiffhomepage
path: root/script/github/close-issues.ts
diff options
context:
space:
mode:
Diffstat (limited to 'script/github/close-issues.ts')
-rwxr-xr-xscript/github/close-issues.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/script/github/close-issues.ts b/script/github/close-issues.ts
index f5470e252..7b38bf675 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}`)