From ef8732018e5212b3eba11bf2707085fd8b8e53de Mon Sep 17 00:00:00 2001 From: Connor Rogers Date: Wed, 25 Nov 2020 10:48:05 +0000 Subject: [PATCH] Lower staleness threshold to 60 days --- .github/workflows/stale.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml index 520cc4c07..e582724ff 100644 --- a/.github/workflows/stale.yml +++ b/.github/workflows/stale.yml @@ -14,15 +14,15 @@ jobs: # Token for the repository. Can be passed in using `{{ secrets.GITHUB_TOKEN }}`. repo-token: ${{ secrets.GITHUB_TOKEN }} # The message to post on the issue when tagging it. If none provided, will not mark issues stale. - stale-issue-message: "This issue has been marked as stale due to 90 days of inactivity. Stale issues will be closed after a further 30 days of inactivity; please remove the stale label in order to prevent this occurring." + stale-issue-message: "This issue has been marked as stale due to 60 days of inactivity. Stale issues will be closed after a further 30 days of inactivity; please remove the stale label in order to prevent this occurring." # The message to post on the pr when tagging it. If none provided, will not mark pull requests stale. - stale-pr-message: "This pull request has been marked as stale due to 90 days of inactivity. Stale PRs will be closed after a further 30 days of inactivity; please remove the stale label in order to prevent this occurring." + stale-pr-message: "This pull request has been marked as stale due to 60 days of inactivity. Stale PRs will be closed after a further 30 days of inactivity; please remove the stale label in order to prevent this occurring." # The message to post on the issue when closing it. If none provided, will not comment when closing an issue. close-issue-message: "Closing stale issue due to further inactivity." # The message to post on the pr when closing it. If none provided, will not comment when closing a pull requests. close-pr-message: "Closing stale PR due to further inactivity." # The number of days old an issue can be before marking it stale. Set to -1 to never mark issues or pull requests as stale automatically. - days-before-stale: 90 + days-before-stale: 60 # The number of days to wait to close an issue or pull request after it being marked stale. Set to -1 to never close stale issues. days-before-close: 30 # The label to apply when an issue is stale.