From dbe4dc5d12024832890ea880c8744823ed497012 Mon Sep 17 00:00:00 2001 From: Dom Rodriguez Date: Tue, 29 Sep 2020 17:34:57 +0100 Subject: [PATCH] [fix](stale bot): Make stale bot less aggressive [2/2] This commit changes the configuration of the stale bot. It will now mark issues as stale after 6 months. In days, this is 182(.5, if you want to be super precise, but let's go with 182). This should reduce the noise made by the bot. Signed-off-by: Dom Rodriguez --- .github/workflows/stale.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml index ad1a4b25..9cc69689 100644 --- a/.github/workflows/stale.yml +++ b/.github/workflows/stale.yml @@ -20,7 +20,7 @@ jobs: close-issue-message: "This issue will now be closed due to inactivty. It may be reopened if the demand indicates it should be." close-pr-message: "This PR will now be closed due to inactivty. It may be reopened if the demand indicates it should be." - days-before-stale: 60 + days-before-stale: 182 days-before-close: -1 stale-issue-label: "no-issue-activity"