diff options
| author | Dax Raad <[email protected]> | 2026-03-24 23:55:10 -0400 |
|---|---|---|
| committer | Dax Raad <[email protected]> | 2026-03-24 23:55:10 -0400 |
| commit | 4f9667c4bb2fed7fdd87e7eceab3acfd248ccf9f (patch) | |
| tree | 6de8515ec49746ccd6066c6c3fa3b450da5f6371 /script | |
| parent | be142b00bdca6f2cda069c7ddf315f0c96de84af (diff) | |
| download | opencode-4f9667c4bb2fed7fdd87e7eceab3acfd248ccf9f.tar.gz opencode-4f9667c4bb2fed7fdd87e7eceab3acfd248ccf9f.zip | |
Change issue close reason from not_planned to completed
Diffstat (limited to 'script')
| -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 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}`) |
