No Response #23299
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: No Response | |
# https://github.com/lee-dohm/no-response | |
on: | |
issue_comment: | |
types: [created] | |
schedule: | |
# Run every hour | |
- cron: '0 * * * *' | |
jobs: | |
noResponse: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: lee-dohm/no-response@9bb0a4b5e6a45046f00353d5de7d90fb8bd773bb # tag=v0.5.0 | |
with: | |
token: ${{ github.token }} | |
# Number of days of inactivity before an Issue is closed for lack of response | |
daysUntilClose: 10 | |
# Label requiring a response | |
responseRequiredLabel: awaiting-response | |
# 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. Without this, | |
we don't have enough information to help you. Please comment below with the | |
requested information if you still need help. |