فهرست منبع

Change issue close reason from not_planned to completed

Dax Raad 4 ماه پیش
والد
کامیت
4f9667c4bb
1فایلهای تغییر یافته به همراه1 افزوده شده و 1 حذف شده
  1. 1 1
      script/github/close-issues.ts

+ 1 - 1
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}`)