Skip to content

Commit

Permalink
Automatically remove "awaiting response" label on-comment (#1129)
Browse files Browse the repository at this point in the history
Also will close tickets that have been "awaiting response" for over 15 days.
  • Loading branch information
Mitchell Hentges committed Mar 15, 2022
1 parent da7bf68 commit 443b124
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/awaiting-response.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: awaiting response
on:
issue_comment:
types: [created]
schedule:
- cron: '5 * * * *'
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 blocked for too
long on a response that wasn't provided. Of course, if the needed response
is provided later, re-open this ticket so that we can progress it further. :)
responseRequiredLabel: awaiting response
responseRequiredColor: d4c5f9
token: ${{ github.token }}

0 comments on commit 443b124

Please sign in to comment.