From b788ae0ae49bfcd08b96cbd01728cef66e1fb277 Mon Sep 17 00:00:00 2001 From: Ilya Fedin Date: Fri, 23 Oct 2020 12:04:44 +0400 Subject: [PATCH] Add stale bot configuration --- .github/stale.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/stale.yml diff --git a/.github/stale.yml b/.github/stale.yml new file mode 100644 index 0000000000..6e25c83d13 --- /dev/null +++ b/.github/stale.yml @@ -0,0 +1,21 @@ +# Number of days of inactivity before an issue becomes stale +daysUntilStale: 60 +# Number of days of inactivity before a stale issue is closed +daysUntilClose: 7 +# Issues with these labels will never be considered stale +exemptLabels: [] +# 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: | + Hey there! + + This issue will be automatically closed in 7 days if there would be no activity. We therefore assume that the user has lost interest or resolved the problem on their own. + + Don't worry though; if this is an error, let us know with a comment and we'll be happy to reopen the issue. + + Thanks! +# Comment to post when closing a stale issue. Set to `false` to disable +closeComment: false +# Process only issues +only: issues