Skip to content

Commit 5edf01e

Browse files
authored
Create no-response.yml
1 parent 1a61e6c commit 5edf01e

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

.github/workflows/no-response.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: No Response
2+
3+
# Both `issue_comment` and `scheduled` event types are required for this Action
4+
# to work properly.
5+
on:
6+
issue_comment:
7+
types: [created]
8+
schedule:
9+
# Schedule for five minutes after the hour, every hour
10+
- cron: '5 * * * *'
11+
workflow_dispatch:
12+
13+
permissions:
14+
issues: write
15+
16+
jobs:
17+
noResponse:
18+
runs-on: ubuntu-latest
19+
steps:
20+
- uses: lee-dohm/no-response@v0.5.0
21+
with:
22+
token: ${{ github.token }}

0 commit comments

Comments
 (0)