From 05bbc3e947c976f9b5e873a55fb0ff09909e0113 Mon Sep 17 00:00:00 2001 From: Alejandro Chavarria Date: Fri, 6 May 2022 09:33:45 -0600 Subject: [PATCH] Implementing GH Actions to close Stale Issues --- .github/workflows/closing_inactive_issues.yml | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/.github/workflows/closing_inactive_issues.yml b/.github/workflows/closing_inactive_issues.yml index f448f4b..ed9657b 100644 --- a/.github/workflows/closing_inactive_issues.yml +++ b/.github/workflows/closing_inactive_issues.yml @@ -21,9 +21,9 @@ jobs: # Implementing ancient issue closure only at the moment. ancient-issue-message: 'This is a very old issue that is probably not getting as much attention as it deserves. - We encourage you to check if this is still an issue in + We encourage you to check if this is still an issue after the latest release and if you find that this is still a problem, please feel free - to provide a comment or open a new issue.' + to open a new issue and make a reference to this one.' #stale-issue-message: 'It looks like this issue has not been active for more than five days. #In the absence of more information, we will be closing this issue soon. #If you find that this is still a problem, please add a comment to prevent automatic closure, or @@ -40,9 +40,8 @@ jobs: # Issue timing. Setting ancient issues to 6 months and stale to 1 month with no activity. # Issue will automatically close after 5 days of being marked as stale. - # For Dry-run purposes, closing issues after 1 day. #days-before-stale: 30 - days-before-close: 1 + days-before-close: 5 days-before-ancient: 180 # If you don't want to mark an issue as being ancient based on a @@ -55,4 +54,4 @@ jobs: repo-token: ${{ secrets.GITHUB_TOKEN }} loglevel: DEBUG # Set dry-run to true to not perform label or close actions. - dry-run: true \ No newline at end of file + #dry-run: true \ No newline at end of file