File tree Expand file tree Collapse file tree 1 file changed +37
-0
lines changed Expand file tree Collapse file tree 1 file changed +37
-0
lines changed Original file line number Diff line number Diff line change
1
+ # A workflow to close issues where the author hasn't responded to a request for
2
+ # more information; see https://github.com/actions/stale.
3
+
4
+ name : No Response
5
+
6
+ # All permissions not specified are set to 'none'.
7
+ permissions :
8
+ issues : write
9
+ pull-requests : write
10
+
11
+ # Run as a daily cron.
12
+ on :
13
+ schedule :
14
+ # Every day at 8am
15
+ - cron : ' 0 8 * * *'
16
+
17
+ jobs :
18
+ no-response :
19
+ runs-on : ubuntu-latest
20
+ if : ${{ github.repository_owner == 'dart-lang' }}
21
+ steps :
22
+ - uses : actions/stale@5bef64f19d7facfb25b37b414482c7164d639639
23
+ with :
24
+ # Don't automatically mark inactive issues+PRs as stale.
25
+ days-before-stale : -1
26
+ # Close needs-info issues and PRs after 14 days of inactivity.
27
+ days-before-close : 14
28
+ stale-issue-label : " needs-info"
29
+ close-issue-message : >
30
+ Without additional information we're not able to resolve this issue.
31
+ Feel free to add more info or respond to any questions above and we
32
+ can reopen the case. Thanks for your contribution!
33
+ stale-pr-label : " needs-info"
34
+ close-pr-message : >
35
+ Without additional information we're not able to resolve this PR.
36
+ Feel free to add more info or respond to any questions above.
37
+ Thanks for your contribution!
You can’t perform that action at this time.
0 commit comments