Skip to content

Commit 3705a1a

Browse files
authored
Merge pull request #6942 from mhmdanas/add-no-response-action
Add no-response workflow
2 parents 793b88a + 71610a3 commit 3705a1a

1 file changed

Lines changed: 20 additions & 0 deletions

File tree

.github/workflows/no-response.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
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+
# Run daily at midnight.
10+
- cron: '0 0 * * *'
11+
12+
jobs:
13+
noResponse:
14+
runs-on: ubuntu-latest
15+
steps:
16+
- uses: lee-dohm/no-response@v0.5.0
17+
with:
18+
token: ${{ github.token }}
19+
daysUntilClose: 14
20+
responseRequiredLabel: waiting-for-author

0 commit comments

Comments
 (0)