From 97dc3cf147f1d0166fec8646030bbaeaba842830 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cat=E2=84=A2?= Date: Fri, 15 Jan 2021 05:19:25 +0000 Subject: [PATCH] Make stale bot action less aggressive (#478) Make stale bot action less aggressive Days before marking issues/PRs as stale: 30 Days before closing stale issues/PRs: 14 --- .github/workflows/stale.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml index e4d3962..b909bb9 100644 --- a/.github/workflows/stale.yml +++ b/.github/workflows/stale.yml @@ -11,12 +11,13 @@ jobs: - uses: actions/stale@v3 with: repo-token: ${{ secrets.GITHUB_TOKEN }} - stale-issue-message: 'Issue is stale and will be closed in 7 days unless there is new activity' - stale-pr-message: 'PR is stale and will be closed in 7 days unless there is new activity' + stale-issue-message: 'Issue is stale and will be closed in 14 days unless there is new activity' + stale-pr-message: 'PR is stale and will be closed in 14 days unless there is new activity' stale-issue-label: 'meta/stale' exempt-issue-label: 'meta/stale-exempt' stale-pr-label: 'meta/stale' exempt-pr-label: 'meta/stale-exempt' remove-stale-when-updated: 'True' operations-per-run: 500 - + days-before-stale: 30 + days-before-close: 14