From f847d08a65f9c61d502ebef25c19a97b09985601 Mon Sep 17 00:00:00 2001 From: James Baxley Date: Wed, 5 Jul 2017 11:17:29 -0400 Subject: [PATCH] add in stale bot (#816) --- .github/stale.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/stale.yml diff --git a/.github/stale.yml b/.github/stale.yml new file mode 100644 index 0000000000..a97b3ed875 --- /dev/null +++ b/.github/stale.yml @@ -0,0 +1,15 @@ +# two weeks without any progress / comments mark issue as stale +daysUntilStale: 14 +# one week after marked stale, close the issue +daysUntilClose: 7 +# whitelist of lables to not mark stale +exemptLables: + - pinned + - security + - enhancement +# text of the comment when marking issue as stale +markComment: > + This issue has been automatically marked as stale becuase it has not had recent activity. It will be closed if not further activity occurs. Thank you for your contributions to React Apollo! +# text of the comment when closing an issue +closeComment: > + This issue has been automatically closed because it has not had recent activity after being marked as stale. If you belive this issue is still a problem or should be reopened, please reopen it! Thank you fo ryour contributions to React Apollo!