From efe8c6777459c6ac21ba48e67551601197d03ae6 Mon Sep 17 00:00:00 2001 From: Muhammad Atif Ali Date: Sat, 23 Dec 2023 18:43:13 +0300 Subject: [PATCH] ci: fix close reason type for stale issues The action was faking because we were incorrectly using `not planned` instead of `not_planned`. --- .github/workflows/stale.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/stale.yaml b/.github/workflows/stale.yaml index 759bd84dd7..e1008e75e7 100644 --- a/.github/workflows/stale.yaml +++ b/.github/workflows/stale.yaml @@ -68,7 +68,7 @@ jobs: repo: context.repo.repo, issue_number: issue.number, state: 'closed', - state_reason: 'not planned' + state_reason: 'not_planned' }); } } else {