-
Notifications
You must be signed in to change notification settings - Fork 208
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
21 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
name: No Response Bot | ||
|
||
on: | ||
issue_comment: | ||
types: [created] | ||
schedule: | ||
- cron: '0 4 * * *' | ||
|
||
jobs: | ||
noResponse: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: lee-dohm/no-response@v0.5.0 | ||
with: | ||
closeComment: > | ||
This issue has been automatically closed because it has been awaiting a response for too long. | ||
When you have time to to work with the maintainers to resolve this issue, please post a new comment and it will be re-opened. | ||
If the issue has been locked for editing by the time you return to it, please open a new issue and reference this one. | ||
daysUntilClose: 30 | ||
responseRequiredLabel: awaiting response | ||
token: ${{ github.token }} |