From 3a9fc7cbcf59365fb211447c8c9d60d39cf2ae08 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?H=C3=A9ctor=20Ramos?= Date: Wed, 4 Mar 2020 14:56:20 -0800 Subject: [PATCH] Configure no-response bot (#28202) Summary: Add configuration for [no-response bot](https://probot.github.io/apps/no-response/). This will make it so that issues tagged with the "Needs: Author Feedback" are closed after 21 days of inactivity. More importantly, it will make it so that the label is removed whenever the original author of the issue adds a comment. ## Changelog [Internal] - N/A Pull Request resolved: https://github.com/facebook/react-native/pull/28202 Test Plan: Verified no-response is enabled for this repository. Reviewed By: cpojer Differential Revision: D20256358 Pulled By: hramos fbshipit-source-id: 51a11e868081afced9ee26640393f08501a8f103 --- .github/no-response.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .github/no-response.yml diff --git a/.github/no-response.yml b/.github/no-response.yml new file mode 100644 index 00000000000..3ae80668434 --- /dev/null +++ b/.github/no-response.yml @@ -0,0 +1,12 @@ +# Configuration for probot-no-response - https://github.com/probot/no-response + +# Number of days of inactivity before an Issue is closed for lack of response +daysUntilClose: 21 +# Label requiring a response +responseRequiredLabel: "Needs: Author Feedback" +# Comment to post when closing an Issue for lack of response. Set to `false` to disable +closeComment: > + It's been three weeks since we asked for additional information from the + author of this issue. As it happens, we don't have enough information to + take action. We are going to close this issue, but please do not hesitate + to open a new issue if you are still encountering this problem.