From 196c5e3632d941874053179b25e01d1dfb53c942 Mon Sep 17 00:00:00 2001 From: Prateek Srivastava Date: Thu, 14 Mar 2019 12:34:58 -0700 Subject: [PATCH] add stale configuration (#813) This PR adds a config for [stale](https://probot.github.io/apps/stale/) to clean up our old issues and PRs. --- .github/stale.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .github/stale.yml diff --git a/.github/stale.yml b/.github/stale.yml new file mode 100644 index 000000000..694b9360e --- /dev/null +++ b/.github/stale.yml @@ -0,0 +1,12 @@ +daysUntilStale: 60 +daysUntilClose: 7 +exemptLabels: + - pinned + - security +staleLabel: wontfix +# 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. +closeComment: true