Automatically closes Issues where the author hasn't responded to a request for more information.
The intent of this app is to close issues that have not received a response to a maintainer's request for more information. Many times issues will be filed without enough information to be properly investigated. This allows maintainers to label an issue as requiring more information from the original author. If the information is not received in a timely manner, the issue will be closed. If the original author comes back and gives more information, the label is removed and the issue is reopened if necessary.
Once per hour, it searches for issues that:
responseRequiredLabel
value in the configurationresponseRequiredLabel
was applied more than daysUntilClose
agoFor each issue found, it:
closeComment
is not false
, posts the contents of closeComment
issue_comment
EventWhen an issue_comment
event is received, if all of the following are true:
responseRequiredLabel
value in the configurationIt will:
responseRequiredLabel
.github/no-response.yml
A .github/no-response.yml
file is required to enable the app. The file can be empty, or it can override any of these default settings:
# 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: 14
# Label requiring a response
responseRequiredLabel: more-information-needed
# Comment to post when closing an Issue for lack of response. Set to `false` to disable
closeComment: >
This issue has been automatically closed because there has been no response
to our request for more information from the original author. With only the
information that is currently in the issue, we don't have enough information
to take action. Please reach out if you have or find the answers we need so
that we can investigate further.