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
This commit is contained in:
Héctor Ramos
2020-03-04 15:01:28 -08:00
committed by Facebook Github Bot
parent 80e6d672f3
commit 3a9fc7cbcf
+12
View File
@@ -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.