From: Daniel Stenberg Date: Fri, 7 Apr 2017 09:43:06 +0000 (+0200) Subject: .github/stale.yml: enable the stale bot X-Git-Tag: curl-7_54_0~27 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ced57e9a9536ee2fe06c700c5274298f3ceaf33d;p=curl .github/stale.yml: enable the stale bot Issues and PRs with no activity for 180 days will get marked as stale, and if no further activity happens within 14 more days, the issue gets closed. This follows our established policy of not letting stalled bugs "get in the way": https://curl.haxx.se/docs/bugs.html#Closing_off_stalled_bugs Closes #1398 --- diff --git a/.github/stale.yml b/.github/stale.yml new file mode 100644 index 000000000..9bcd4eb1d --- /dev/null +++ b/.github/stale.yml @@ -0,0 +1,17 @@ +# Number of days of inactivity before an issue becomes stale +daysUntilStale: 180 +# Number of days of inactivity before a stale issue is closed +daysUntilClose: 14 +# Issues with these labels will never be considered stale +exemptLabels: + - pinned + - security +# 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