diff options
| author | Aiden Cline <[email protected]> | 2026-04-25 00:47:36 -0400 |
|---|---|---|
| committer | GitHub <[email protected]> | 2026-04-25 00:47:36 -0400 |
| commit | f7d527cd28affbd68c18e11c36799d252d88df13 (patch) | |
| tree | 07a3532c8a1a79ba5100a173612206718667b102 /script/github | |
| parent | e29058c346e50976c6b5a2277f22d1902917e65c (diff) | |
| download | opencode-f7d527cd28affbd68c18e11c36799d252d88df13.tar.gz opencode-f7d527cd28affbd68c18e11c36799d252d88df13.zip | |
ci: adjust auto close issue script to use not planned instead of completed (#24253)
Diffstat (limited to 'script/github')
| -rwxr-xr-x | script/github/close-issues.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/script/github/close-issues.ts b/script/github/close-issues.ts index e8f0573eb..9e1f59795 100755 --- a/script/github/close-issues.ts +++ b/script/github/close-issues.ts @@ -37,7 +37,7 @@ async function close(num: number) { const patch = await fetch(base, { method: "PATCH", headers, - body: JSON.stringify({ state: "closed", state_reason: "completed" }), + body: JSON.stringify({ state: "closed", state_reason: "not_planned" }), }) if (!patch.ok) throw new Error(`Failed to close #${num}: ${patch.status} ${patch.statusText}`) |
