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/[email protected]
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 tofalse
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 theresponseRequiredLabel
. 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:
- Open
- Have a label named the same as the
responseRequiredLabel
value in the configuration - The
responseRequiredLabel
was applied more thandaysUntilClose
ago
For each issue found, it:
- If
closeComment
is notfalse
, posts the contents ofcloseComment
- Closes the issue
When an issue_comment
event is received, if all of the following are true:
- The author of the comment is the original author of the issue
- The issue has a label named the same as the
responseRequiredLabel
value in the configuration
It will:
- Remove the
responseRequiredLabel
- Reopen the issue if it was closed by someone other than the original author of the issue