@@ -3,6 +3,8 @@ name: No Response
3
3
# Both `issue_comment` and `scheduled` event types are required for this Action
4
4
# to work properly.
5
5
on :
6
+ issue_comment :
7
+ types : [created]
6
8
schedule :
7
9
# Schedule for five minutes after the hour, every hour
8
10
- cron : ' 5 * * * *'
11
13
# specified are set to 'none'.
12
14
permissions :
13
15
issues : write
14
- pull-requests : write
15
16
16
17
jobs :
17
- no-response :
18
+ noResponse :
18
19
runs-on : ubuntu-latest
19
20
if : ${{ github.repository == 'flutter/flutter' }}
20
21
steps :
21
- - uses : actions/stale@1160a2240286f5da8ec72b1c0816ce2481aabf84
22
+ - uses : godofredoc/no-response@0ce2dc0e63e1c7d2b87752ceed091f6d32c9df09
22
23
with :
23
- repo- token : ${{ github.token }}
24
+ token : ${{ github.token }}
24
25
# Comment to post when closing an Issue for lack of response. Set to `false` to disable
25
- close-issue-message : >
26
+ closeComment : >
26
27
Without additional information, we are unfortunately not sure how to
27
28
resolve this issue. We are therefore reluctantly going to close this
28
29
bug for now.
34
35
35
36
Thanks for your contribution.
36
37
# Number of days of inactivity before an issue is closed for lack of response.
37
- days-before-stale : -1
38
- days-before-close : 21
39
- close-issue-label : " r: timeout"
38
+ daysUntilClose : 21
40
39
# Label requiring a response.
41
- stale-issue-label : " waiting for customer response"
42
- stale-pr-label : " needs-info"
43
- close-pr-message : >
44
- Without additional information we're not able to resolve this PR.
45
- Feel free to add more info or respond to any questions above.
46
- Thanks for your contribution!
47
- close-pr-label : " r: timeout"
48
- operations-per-run : 200
49
- any-of-labels : " waiting for customer response,needs-info"
40
+ responseRequiredLabel : " waiting for customer response"
0 commit comments