From 91945aa78a4269acd51d93f88a47d71c38ad63d9 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Fri, 25 Oct 2019 11:47:40 +0200 Subject: Create stale.yml (#12207) --- .github/stale.yml | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 .github/stale.yml (limited to '.github') diff --git a/.github/stale.yml b/.github/stale.yml new file mode 100644 index 000000000..bae597628 --- /dev/null +++ b/.github/stale.yml @@ -0,0 +1,9 @@ +daysUntilStale: 60 +daysUntilClose: 7 +exemptLabels: + - security +staleLabel: wontfix +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. -- cgit From 4988ebba4e31aff5dee657836cf059b5843d9eb8 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Sat, 26 Oct 2019 12:45:52 +0200 Subject: Change stale bot to only touch pull requests over 120 days old (#12217) --- .github/stale.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to '.github') diff --git a/.github/stale.yml b/.github/stale.yml index bae597628..6601ef8c0 100644 --- a/.github/stale.yml +++ b/.github/stale.yml @@ -1,4 +1,4 @@ -daysUntilStale: 60 +daysUntilStale: 120 daysUntilClose: 7 exemptLabels: - security @@ -7,3 +7,4 @@ 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. +only: pulls -- cgit