From 8bfc658d453ecada34a936b7d301b78d9953bc7c Mon Sep 17 00:00:00 2001 From: Ariya Hidayat Date: Wed, 25 Dec 2019 04:12:30 -0800 Subject: [PATCH] Experiment with issue auto-closing (#15395) --- .github/stale.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/stale.yml diff --git a/.github/stale.yml b/.github/stale.yml new file mode 100644 index 0000000000..276049d398 --- /dev/null +++ b/.github/stale.yml @@ -0,0 +1,19 @@ +# Number of days of inactivity before an issue becomes stale +daysUntilStale: 15 +# Number of days of inactivity before a stale issue is closed +daysUntilClose: 3 +# Issues with these labels will never be considered stale +exemptLabels: + - pinned + - meta +# 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: false +# Comment to post when closing a stale issue. Set to `false` to disable +closeComment: > + Due to our very limited maintenance capacity (see #14541 for more details), + we need to prioritize our development focus on other tasks. + Therefore, this issue will be automatically closed. + In the future, if we see the need to attend to this issue again, then it will be reopened. + Thank you for your contribution!