Skip to content

Commit 4f9667c

Browse files
committed
Change issue close reason from not_planned to completed
1 parent be142b0 commit 4f9667c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

script/github/close-issues.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ async function close(num: number) {
3838
const patch = await fetch(base, {
3939
method: "PATCH",
4040
headers,
41-
body: JSON.stringify({ state: "closed", state_reason: "not_planned" }),
41+
body: JSON.stringify({ state: "closed", state_reason: "completed" }),
4242
})
4343
if (!patch.ok) throw new Error(`Failed to close #${num}: ${patch.status} ${patch.statusText}`)
4444

0 commit comments

Comments
 (0)