diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2023-08-21 13:12:09 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2023-08-21 13:15:53 -0400 |
commit | c9aa7ac871480651ed29ac211734641449c9cdb8 (patch) | |
tree | 1f5db86c07125fcffae0c6f1c59f27cd3f89b160 | |
parent | 01ed8096d8b53fd58f760b413533f1ef15f1b667 (diff) | |
download | kutter-c9aa7ac871480651ed29ac211734641449c9cdb8.tar.gz kutter-c9aa7ac871480651ed29ac211734641449c9cdb8.tar.xz kutter-c9aa7ac871480651ed29ac211734641449c9cdb8.zip |
github: Fix regression due to update of actions/stale
Commit 594c0243 updated the workflows from actions/stale@v3 to
actions/stale@v8, but did not make the corresponding updates to the
config parameters. This resulted in the closing of some PRs. Update
the config parameters to avoid this regression.
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
-rw-r--r-- | .github/workflows/stale-issue-bot.yaml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/.github/workflows/stale-issue-bot.yaml b/.github/workflows/stale-issue-bot.yaml index 9d4b6267..3ada94d6 100644 --- a/.github/workflows/stale-issue-bot.yaml +++ b/.github/workflows/stale-issue-bot.yaml @@ -31,6 +31,8 @@ jobs: exempt-issue-labels: 'enhancement,bug' days-before-stale: 35 days-before-close: 7 + days-before-pr-stale: -1 + days-before-pr-close: -1 # Close tickets marked with "not on github" label close_not_on_github: if: github.repository == 'Klipper3d/klipper' |