From 7a4289f1409b653e5479ac024c4e9f446ffa66e5 Mon Sep 17 00:00:00 2001 From: Michael Aldridge Date: Sat, 2 Apr 2022 00:02:47 -0500 Subject: [PATCH] .github/workflows: Enable actions/stale --- .github/workflows/stale.yml | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml index abdc83c9d383..91ac19e4f638 100644 --- a/.github/workflows/stale.yml +++ b/.github/workflows/stale.yml @@ -12,10 +12,8 @@ jobs: steps: - uses: actions/stale@v4 with: - stale-issue-message: 'Issues become stale 90 days after last activity and are closed 7 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 7 days after that. If this pull request is still relevant bump it or assign it.' + 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.' days-before-stale: 90 - days-before-close: 7 - debug-only: true + days-before-close: 14 exempt-all-assignees: true - operations-per-run: 1000