A GitHub Action that closes Issues where the author hasn't responded to a request for more information.
Recommended basic configuration:
name: No Response # Both `issue_comment` and `scheduled` event types are required for this Action # to work properly. on: issue_comment: types: [created] schedule: # Schedule for five minutes after the hour, every hour - cron: '5 * * * *' jobs: noResponse: runs-on: ubuntu-latest steps: - uses: lee-dohm/no-response@v0.5.0 with: token: ${{ github.token }}
See action.yml for defaults.
closeComment — Markdown text to post as a comment when an issue is going to be closed. Set to false to disable commenting when closing an issue.daysUntilClose — Number of days to wait for a response from the original author before closing.responseRequiredColor — Color for the responseRequiredLabel. Only used when creating the label if it does not already exist.responseRequiredLabel — Text of the label used to indicate that a response from the original author is required.token — Token used to access repo information. The default GitHub Actions token is sufficient.None.
The intent of this Action 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 Action 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.
At the scheduled times, it searches for issues that are:
responseRequiredLabel value in the configurationresponseRequiredLabel was applied more than daysUntilClose agoFor each issue found, it:
closeComment is not false, posts the contents of closeCommentissue_comment EventWhen an issue_comment event is received, if all of the following are true:
responseRequiredLabel value in the configurationIt will:
responseRequiredLabel