From 8bf90f8673bcafb50754dff2af9bbac978ec69f5 Mon Sep 17 00:00:00 2001 From: Kevin Delisle Date: Tue, 14 Nov 2017 17:36:01 -0500 Subject: [PATCH] chore: Add Stalebot config --- .github/stale.yml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 .github/stale.yml diff --git a/.github/stale.yml b/.github/stale.yml new file mode 100644 index 000000000000..cebee83bf756 --- /dev/null +++ b/.github/stale.yml @@ -0,0 +1,27 @@ +# Number of days of inactivity before an issue becomes stale +daysUntilStale: 180 +# Number of days of inactivity before a stale issue is closed +daysUntilClose: 30 +# Issues with these labels will never be considered stale +exemptLabels: + - planning + - committed + - in-progress + - pinned + - security + - critical + - p1 + - major +# 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 marked stale because it has not seen activity within + six months. If you believe this to be in error, please contact one of the code owners, + listed in the `CODEOWNERS` file at the top-level of this repository. + This issue will be closed within 30 days of being stale. +# Comment to post when closing a stale issue. Set to `false` to disable +closeComment: > + This issue has been closed due to continued inactivity. Thank you for your understanding. + If you believe this to be in error, please contact one of the code owners, + listed in the `CODEOWNERS` file at the top-level of this repository.