Skip to content

Commit 3e4cc5a

Browse files
authored
chore: Enable no response check (#704)
Signed-off-by: Sheng Chen <[email protected]>
1 parent fe27a03 commit 3e4cc5a

File tree

2 files changed

+23
-4
lines changed

2 files changed

+23
-4
lines changed

.github/no-response.yml

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

.github/workflows/no-response.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: No Response
2+
3+
# **What it does**: Closes issues where the original author doesn't respond to a request for information.
4+
# **Why we have it**: To remove the need for maintainers to remember to check back on issues periodically to see if contributors have responded.
5+
6+
on:
7+
issue_comment:
8+
types: [created]
9+
schedule:
10+
# every morning at 5:30 AM
11+
- cron: '30 5 * * *'
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: 14
21+
responseRequiredLabel: "need more info"
22+
closeComment: >
23+
This issue has been closed automatically because it needs more information and has not had recent activity. Please reach out if you have or find the answers we need so that we can investigate further.

0 commit comments

Comments
 (0)