From 9b55aaae1e6aff685c2d027edf1b55b1add0f21f Mon Sep 17 00:00:00 2001 From: Dom Rodriguez Date: Tue, 29 Sep 2020 23:29:44 +0100 Subject: [PATCH] [improve](stale bot): Adjust stale messages to encourage self-closing What the subject line says really. As per @walker0643's feedback, the stale bot now encourages the author of the issue/PR to close it themselves, if it is no longer an issue, or if they no longer want to work on the PR. Signed-off-by: Dom Rodriguez --- .github/workflows/stale.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml index 9cc69689..26584bfb 100644 --- a/.github/workflows/stale.yml +++ b/.github/workflows/stale.yml @@ -14,8 +14,8 @@ jobs: with: repo-token: ${{ secrets.GITHUB_TOKEN }} - 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!" + stale-issue-message: "Is this issue still an issue for you? Please do comment and let us know! Alternatively, you may close the issue yourself if it is no longer an problem" + stale-pr-message: "Is this PR still being worked on? Please do comment and let us know! Alternatively, you may close the PR yourself if you no longer wish to work on the PR." 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."