From c992b0f74a3506695e97e03cb2d40d944610f843 Mon Sep 17 00:00:00 2001 From: Wayne Werner Date: Thu, 12 Dec 2019 12:25:45 -0600 Subject: [PATCH] Enhance Stalebot closes #55549 There are a number of labels we don't want to close, ever. Also, if we close things *faster* then they will be fresher in people's minds, and less likely to end out closed as stale. --- .github/stale.yml | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/.github/stale.yml b/.github/stale.yml index 838241a55f71..d5f3761bd87a 100644 --- a/.github/stale.yml +++ b/.github/stale.yml @@ -2,15 +2,18 @@ # Number of days of inactivity before an issue becomes stale # 600 is approximately 1 year and 8 months -daysUntilStale: 600 +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: -# - pinned -# - security +exemptLabels: + - Confirmed + - Blocker + - Critical + - P1 + - P2 # Label to use when marking an issue as stale staleLabel: stale