diff options
author | 0x5c <dev@0x5c.io> | 2022-09-30 06:37:34 +0000 |
---|---|---|
committer | Michael Aldridge <aldridge.mac@gmail.com> | 2022-09-30 07:09:51 +0000 |
commit | 97a1aaaa0d24582756c130f5e20b96582b93d83a (patch) | |
tree | 6ce747fcfdaaa1c1b8c33fdc659f1c504915ff3c /.github/workflows | |
parent | b357d3136455ae678befe6e1463a5bad15e02643 (diff) | |
download | void-packages-97a1aaaa0d24582756c130f5e20b96582b93d83a.tar void-packages-97a1aaaa0d24582756c130f5e20b96582b93d83a.tar.gz void-packages-97a1aaaa0d24582756c130f5e20b96582b93d83a.tar.bz2 void-packages-97a1aaaa0d24582756c130f5e20b96582b93d83a.tar.lz void-packages-97a1aaaa0d24582756c130f5e20b96582b93d83a.tar.xz void-packages-97a1aaaa0d24582756c130f5e20b96582b93d83a.tar.zst void-packages-97a1aaaa0d24582756c130f5e20b96582b93d83a.zip |
.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.
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/stale.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml index d0fb383e442..bf26c4b03cd 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.' |