From c90624781c6c54f4791d994712ce74fb3941b7a9 Mon Sep 17 00:00:00 2001 From: "Mr.k" Date: Fri, 19 Apr 2024 20:27:16 +0300 Subject: [PATCH] Fix Github Actions Auto Close Issues not leaving Issues Open (#1847) --- .github/workflows/close-old-issues.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/close-old-issues.yaml b/.github/workflows/close-old-issues.yaml index 3050c4b1..a37180c5 100644 --- a/.github/workflows/close-old-issues.yaml +++ b/.github/workflows/close-old-issues.yaml @@ -38,7 +38,7 @@ jobs: // Close issues inactive for more than the inactivity period for (const issue of issues) { - const closeIssue = true; + let closeIssue = true; // Get all Labels of issue, and compared each label with the labelKeepIssue const variable try {