From 8122484c3db3c32903c0aae4b298c9fd03b76a06 Mon Sep 17 00:00:00 2001 From: Dom Rodriguez Date: Tue, 29 Sep 2020 17:33:04 +0100 Subject: [PATCH] [fix](stale bot): Make stale bot less aggressive [1/2] This commit changes the configuration of the stale bot. It no longer closes stale issues, and instead gives a friendly 'nudge' for stale issues. The next commit will change the time for issues to be marked stale to 6 months. This should help reduce the noise from the bot. Signed-off-by: Dom Rodriguez --- .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 b1d94542..ad1a4b25 100644 --- a/.github/workflows/stale.yml +++ b/.github/workflows/stale.yml @@ -14,14 +14,14 @@ jobs: with: repo-token: ${{ secrets.GITHUB_TOKEN }} - stale-issue-message: "This issue has been automatically marked as stale due to inactivity. It will be closed if no further activity occurs. Thank you for your contributions." - stale-pr-message: "This PR has been automatically marked as stale due to inactivity. It will be closed if no further activity occurs. Thank you for your contributions." + stale-issue-message: "Is this issue still an issue for you? Please do comment and let us know!" + stale-pr-message: "Is this PR still being worked on? Please do comment and let us know!" 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-close: 7 + days-before-close: -1 stale-issue-label: "no-issue-activity" stale-pr-label: "no-pr-activity"