Skip to content

Commit 5a57b3a

Browse files
authored
blast_repo fixes (#98)
no-response
1 parent 0eb4141 commit 5a57b3a

File tree

1 file changed

+35
-0
lines changed

1 file changed

+35
-0
lines changed

.github/workflows/no-response.yml

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
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+
# Run as a daily cron.
7+
on:
8+
schedule:
9+
# Every day at 8am
10+
- cron: '0 8 * * *'
11+
12+
# All permissions not specified are set to 'none'.
13+
permissions:
14+
issues: write
15+
pull-requests: write
16+
17+
jobs:
18+
no-response:
19+
runs-on: ubuntu-latest
20+
if: ${{ github.repository_owner == 'dart-lang' }}
21+
steps:
22+
- uses: actions/stale@1160a2240286f5da8ec72b1c0816ce2481aabf84
23+
with:
24+
days-before-stale: -1
25+
days-before-close: 14
26+
stale-issue-label: "needs-info"
27+
close-issue-message: >
28+
Without additional information we're not able to resolve this issue.
29+
Feel free to add more info or respond to any questions above and we
30+
can reopen the case. Thanks for your contribution!
31+
stale-pr-label: "needs-info"
32+
close-pr-message: >
33+
Without additional information we're not able to resolve this PR.
34+
Feel free to add more info or respond to any questions above.
35+
Thanks for your contribution!

0 commit comments

Comments
 (0)