From 278453451ec49366f993a7b9cce22a3dcaab5f1d Mon Sep 17 00:00:00 2001 From: tooomm Date: Fri, 15 Jul 2022 21:18:38 +0200 Subject: [PATCH 1/2] only run on certain labels --- .github/stale.yml | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/.github/stale.yml b/.github/stale.yml index c15e06f90..6b0169bd9 100644 --- a/.github/stale.yml +++ b/.github/stale.yml @@ -1,14 +1,23 @@ # 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 -any-of-issue-labels: unconfirmed,cant-reproduce,stale + +# Only issues or pull requests with all of these labels are check if stale. Defaults to `[]` (disabled) +onlyLabels: [unconfirmed,cant-reproduce] + # 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. Thank you for your contributions. + # Comment to post when closing a stale issue. Set to `false` to disable closeComment: false + +# See https://github.com/marketplace/stale for more info on the app +# and https://github.com/probot/stale for the configuration docs From 2ab2d9127df146910130591b541258c3bb6cd4c4 Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Fri, 15 Jul 2022 20:19:28 -0700 Subject: [PATCH 2/2] Use cant-reproduce for stale --- .github/stale.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/stale.yml b/.github/stale.yml index 6b0169bd9..9b473eef5 100644 --- a/.github/stale.yml +++ b/.github/stale.yml @@ -5,7 +5,7 @@ daysUntilStale: 30 daysUntilClose: 7 # Only issues or pull requests with all of these labels are check if stale. Defaults to `[]` (disabled) -onlyLabels: [unconfirmed,cant-reproduce] +onlyLabels: [cant-reproduce] # Label to use when marking an issue as stale staleLabel: stale