-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
31 lines (28 loc) · 1.09 KB
/
no-response.yml
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
29
30
31
name: No Response
# Both `issue_comment` and `scheduled` event types are required for this Action
# to work properly.
on:
issue_comment:
types: [created]
schedule:
# Schedule for five minutes after the hour, every hour
- cron: '5 * * * *'
permissions: {}
jobs:
noResponse:
runs-on: ubuntu-latest
permissions:
contents: read
issues: write
steps:
- uses: lee-dohm/no-response@9bb0a4b5e6a45046f00353d5de7d90fb8bd773bb # v0.5.0
with:
token: ${{ secrets.GITHUB_TOKEN }}
# Number of days of inactivity before an Issue is closed for lack of response
daysUntilClose: 7
# Label requiring a response
responseRequiredLabel: 'status: waiting for follow-up'
# Comment to post when closing an Issue for lack of response. Set to `false` to disable
closeComment: >
The issue has been inactive for 7 days and has been automatically closed.
If you think that it has been incorrectly closed, please reopen it and provide missing information (if any) or continue the last discussion.