Skip to content

Commit 6cb12dd

Browse files
authored
Add no response GH action (#515)
* Add no response GH action * Update noresponse.yml
1 parent d00a7cf commit 6cb12dd

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

.github/workflows/noresponse.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: No Response
2+
3+
# Both `issue_comment` and `schedule` event types are required for this Action
4+
# to work properly.
5+
# Details here: https://github.com/lee-dohm/no-response/blob/main/action.yml
6+
on:
7+
issue_comment:
8+
types: [created]
9+
schedule:
10+
# Schedule for 00:00 UTC every day
11+
- cron: '0 0 * * *'
12+
13+
jobs:
14+
noResponse:
15+
runs-on: ubuntu-latest
16+
steps:
17+
- uses: lee-dohm/[email protected]
18+
with:
19+
token: ${{ github.token }}
20+
daysUntilClose: 30
21+
responseRequiredLabel: question

0 commit comments

Comments
 (0)