This repository was archived by the owner on Feb 24, 2025. It is now read-only.
Commit 547184a 1 parent 969bc6c commit 547184a Copy full SHA for 547184a
File tree 2 files changed +54
-0
lines changed
2 files changed +54
-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
+ # 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
+ # 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!
Original file line number Diff line number Diff line change
1
+ # A CI configuration to auto-publish pub packages.
2
+
3
+ name : Publish
4
+
5
+ on :
6
+ pull_request :
7
+ branches : [ master ]
8
+ push :
9
+ tags : [ 'v[0-9]+.[0-9]+.[0-9]+' ]
10
+
11
+ jobs :
12
+ publish :
13
+ if : ${{ github.repository_owner == 'dart-lang' }}
14
+ uses : dart-lang/ecosystem/.github/workflows/publish.yaml@main
15
+ permissions :
16
+ id-token : write # Required for authentication using OIDC
17
+ pull-requests : write # Required for writing the pull request note
You can’t perform that action at this time.
0 commit comments