File tree Expand file tree Collapse file tree 1 file changed +33
-0
lines changed Expand file tree Collapse file tree 1 file changed +33
-0
lines changed Original file line number Diff line number Diff line change
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
+ # Schedule for five minutes after midnight, every day
10
+ - cron : ' 5 0 * * *'
11
+
12
+ # By specifying the access of one of the scopes, all of those that are not
13
+ # specified are set to 'none'.
14
+ permissions :
15
+ issues : write
16
+
17
+ jobs :
18
+ noResponse :
19
+ runs-on : ubuntu-latest
20
+ steps :
21
+ - uses : lee-dohm/no-response@9bb0a4b5e6a45046f00353d5de7d90fb8bd773bb
22
+ with :
23
+ token : ${{ github.token }}
24
+ # Comment to post when closing an Issue for lack of response. Set to `false` to disable
25
+ closeComment : >
26
+ Without additional information we're not able to resolve this issue,
27
+ so it will be closed at this time. You're still free to add more info
28
+ and respond to any questions above, though. We'll reopen the case
29
+ if you do. Thanks for your contribution!
30
+ # Number of days of inactivity before an issue is closed for lack of response.
31
+ daysUntilClose : 14
32
+ # Label requiring a response.
33
+ responseRequiredLabel : " waiting for response"
You can’t perform that action at this time.
0 commit comments