From 604d6b2f1570c06c1b23a36d23fa1df10403982f Mon Sep 17 00:00:00 2001 From: Alexandre ZANNI <16578570+noraj@users.noreply.github.com> Date: Sat, 19 Mar 2022 23:12:12 +0100 Subject: [PATCH] Less aggressive stale bot config (#2542) https://github.com/probot/stale --- .github/stale.yml | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/.github/stale.yml b/.github/stale.yml index dc90e5a1..924b2bfd 100644 --- a/.github/stale.yml +++ b/.github/stale.yml @@ -1,13 +1,13 @@ # Number of days of inactivity before an issue becomes stale -daysUntilStale: 60 +daysUntilStale: 90 # Number of days of inactivity before a stale issue is closed -daysUntilClose: 7 +daysUntilClose: 30 # Issues with these labels will never be considered stale exemptLabels: - pinned - security # Label to use when marking an issue as stale -staleLabel: wontfix +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 @@ -15,3 +15,7 @@ markComment: > for your contributions. # Comment to post when closing a stale issue. Set to `false` to disable closeComment: false +# Ignore issues in a milestone +exemptMilestones: true +# Ignore issues with an assignee +exemptAssignees: true