Skip to content

Commit

Permalink
Automatically remove "awaiting response" label on-comment
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 Feb 17, 2022
1 parent e39d7c6 commit 5866830
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/awaiting-response.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
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 has been automatically closed because this is blocked on a response,
but one hasn't bee provided yet. Of course, if the needed response is
provided later, then re-open this ticket so that we can progress it
further :)
responseRequiredLabel: awaiting response
responseRequiredColor: d4c5f9
token: ${{ github.token }}

0 comments on commit 5866830

Please sign in to comment.