You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# **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/no-response@v0.5.0
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