From 54e60ec5e1e112f900f6b2fe92d80048909edb06 Mon Sep 17 00:00:00 2001 From: Bogdan Poplauschi Date: Fri, 26 Oct 2018 10:15:01 +0300 Subject: [PATCH] Added Stale bot config - decided on 30 days (issues) / 60 days (prs) to mark as stale + another 7 to close --- .github/stale.yml | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 .github/stale.yml diff --git a/.github/stale.yml b/.github/stale.yml new file mode 100644 index 00000000..3b3b587f --- /dev/null +++ b/.github/stale.yml @@ -0,0 +1,28 @@ +# Number of days of inactivity before an issue becomes stale +daysUntilStale: 30 +# Number of days of inactivity before a stale issue is closed +daysUntilClose: 7 +# Issues with these labels will never be considered stale +exemptLabels: + - important +# Label to use when marking an issue as stale +staleLabel: stale +# Comment to post when marking an issue as stale. Set to `false` to disable +markComment: > + This issue has been automatically marked as stale because it has not had + recent activity. It will be closed if no further activity occurs. + If this is still an issue, please make sure it is up to date and if so, + add a comment that this is still an issue to keep it open. + Thank you for your contributions. +# Comment to post when closing a stale issue. Set to `false` to disable +closeComment: false + +# Optionally, specify configuration settings that are specific to just 'issues' or 'pulls': +pulls: + daysUntilStale: 60 + markComment: > + This pull request has been automatically marked as stale because it has not had + recent activity. It will be closed if no further activity occurs. + If this is still applicable, please make sure it is up to date and if so, + add a comment that this is still an issue to keep it open. + Thank you for your contributions.