diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2021-11-22 19:06:03 -0500 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2021-11-22 19:06:03 -0500 |
commit | 7971715bb40a41342275d168b471e33882f49150 (patch) | |
tree | 19fdc838f5ef30edf5a2245c03de3d6f4700b2b4 | |
parent | 05a8aca0a84c582e7cca8525f06fd9326b80a685 (diff) | |
download | kutter-7971715bb40a41342275d168b471e33882f49150.tar.gz kutter-7971715bb40a41342275d168b471e33882f49150.tar.xz kutter-7971715bb40a41342275d168b471e33882f49150.zip |
workflows: Lock issues that have been closed for 6+ months
Add a new automation to lock closed issues with no recent updates.
This is intended to reduce updates to old tickets that few people will
see.
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
-rw-r--r-- | .github/workflows/stale-issue-bot.yaml | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/.github/workflows/stale-issue-bot.yaml b/.github/workflows/stale-issue-bot.yaml index 990191b6..57dba3cc 100644 --- a/.github/workflows/stale-issue-bot.yaml +++ b/.github/workflows/stale-issue-bot.yaml @@ -194,3 +194,14 @@ jobs: state: 'closed' }); } + # Lock closed issues after 6 months of inactivity. + lock: + name: Lock Closed Issues + if: github.repository == 'Klipper3d/klipper' + runs-on: ubuntu-latest + steps: + - uses: dessant/lock-threads@v3 + with: + process-only: 'issues' + issue-inactive-days: '180' + issue-lock-reason: '' |