From ab8ec254cc3c7c57b7e19d3126256963cf355c68 Mon Sep 17 00:00:00 2001 From: 0x5c Date: Fri, 30 Sep 2022 02:37:34 -0400 Subject: [PATCH] .github/workflows/stale.yml: update to v6 This fixes a bug where a stale issue/PR that gets updated without a comment remains stale indefinitely and never gets closed (actions/stale#715). The only "breaking" change in that upadate is that the default close reason has changed to "not planned". That seems like a more desirable default anyways. --- .github/workflows/stale.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml index d0fb383e4424..bf26c4b03cdb 100644 --- a/.github/workflows/stale.yml +++ b/.github/workflows/stale.yml @@ -13,7 +13,7 @@ jobs: issues: write pull-requests: write steps: - - uses: actions/stale@v4 + - uses: actions/stale@v6 with: stale-issue-message: 'Issues become stale 90 days after last activity and are closed 14 days after that. If this issue is still relevant bump it or assign it.' stale-pr-message: 'Pull Requests become stale 90 days after last activity and are closed 14 days after that. If this pull request is still relevant bump it or assign it.'