Skip to content

Commit 443b124

Browse files
author
Mitchell Hentges
authored
Automatically remove "awaiting response" label on-comment (#1129)
Also will close tickets that have been "awaiting response" for over 15 days.
1 parent da7bf68 commit 443b124

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: awaiting response
2+
on:
3+
issue_comment:
4+
types: [created]
5+
schedule:
6+
- cron: '5 * * * *'
7+
jobs:
8+
noResponse:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: lee-dohm/[email protected]
12+
with:
13+
closeComment: >
14+
This issue has been automatically closed because it has been blocked for too
15+
long on a response that wasn't provided. Of course, if the needed response
16+
is provided later, re-open this ticket so that we can progress it further. :)
17+
responseRequiredLabel: awaiting response
18+
responseRequiredColor: d4c5f9
19+
token: ${{ github.token }}

0 commit comments

Comments
 (0)