From 085d013557a12defeee2ffdf91b82b325967835d Mon Sep 17 00:00:00 2001 From: Yee Cheng Chin Date: Sat, 20 Aug 2022 04:04:15 -0700 Subject: [PATCH] Fix GitHub action to close stale issue not working I previously added the use of the "close-issue-reason" parameter but it's only available in v5, whereas I was pointing to v4. --- .github/workflows/macvim-issues.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/macvim-issues.yaml b/.github/workflows/macvim-issues.yaml index 7549c2031e..86a273f269 100644 --- a/.github/workflows/macvim-issues.yaml +++ b/.github/workflows/macvim-issues.yaml @@ -10,7 +10,7 @@ jobs: issues: write pull-requests: write steps: - - uses: actions/stale@v4 + - uses: actions/stale@v5 with: any-of-labels: "Response Needed" days-before-stale: 45