-
Notifications
You must be signed in to change notification settings - Fork 41
28 lines (25 loc) · 1012 Bytes
/
no-response.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
name: No Response
# https://github.com/lee-dohm/no-response
on:
issue_comment:
types: [created]
schedule:
# Run every hour
- cron: '0 * * * *'
jobs:
noResponse:
runs-on: ubuntu-latest
steps:
- uses: lee-dohm/no-response@9bb0a4b5e6a45046f00353d5de7d90fb8bd773bb # tag=v0.5.0
with:
token: ${{ github.token }}
# Number of days of inactivity before an Issue is closed for lack of response
daysUntilClose: 10
# Label requiring a response
responseRequiredLabel: awaiting-response
# Comment to post when closing an Issue for lack of response. Set to `false` to disable
closeComment: >
This issue has been automatically closed because there has been no response
to our request for more information from the original author. Without this,
we don't have enough information to help you. Please comment below with the
requested information if you still need help.