Skip to content

Commit 5f85667

Browse files
authored
Merge pull request #11496 from pradyunsg/switch-to-no-response-action
2 parents 2175255 + a8716b9 commit 5f85667

File tree

2 files changed

+19
-11
lines changed

2 files changed

+19
-11
lines changed

.github/no-response.yml

Lines changed: 0 additions & 11 deletions
This file was deleted.

.github/workflows/no-response.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
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+
12+
jobs:
13+
noResponse:
14+
runs-on: ubuntu-latest
15+
steps:
16+
- uses: lee-dohm/[email protected]
17+
with:
18+
token: ${{ github.token }}
19+
responseRequiredLabel: "S: awaiting response"

0 commit comments

Comments
 (0)