File tree Expand file tree Collapse file tree 4 files changed +59
-11
lines changed Expand file tree Collapse file tree 4 files changed +59
-11
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/godofredoc/no-response for docs.
3
+
4
+ name : No Response
5
+
6
+ # Both `issue_comment` and `scheduled` event types are required.
7
+ on :
8
+ issue_comment :
9
+ types : [created]
10
+ schedule :
11
+ # Every day at 8am
12
+ - cron : ' 0 8 * * *'
13
+
14
+ # All permissions not specified are set to 'none'.
15
+ permissions :
16
+ issues : write
17
+
18
+ jobs :
19
+ noResponse :
20
+ runs-on : ubuntu-latest
21
+ if : ${{ github.repository_owner == 'dart-lang' }}
22
+ steps :
23
+ - uses : godofredoc/no-response@0ce2dc0e63e1c7d2b87752ceed091f6d32c9df09
24
+ with :
25
+ responseRequiredLabel : " needs-info"
26
+ responseRequiredColor : 4774bc
27
+ daysUntilClose : 14
28
+ # Comment to post when closing an Issue for lack of response.
29
+ closeComment : >
30
+ Without additional information we're not able to resolve this issue,
31
+ so it will be closed at this time. You're still free to add more
32
+ info and respond to any questions above, though. We'll reopen the
33
+ issue if you do. Thanks for your contribution!
34
+ token : ${{ github.token }}
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 : [ main ]
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
Original file line number Diff line number Diff line change 64
64
- name : Convert coverage to lcov
65
65
run : dart run coverage:format_coverage -i ./coverage -o ./coverage/lcov.info --lcov --report-on lib/
66
66
if : always() && steps.install.outcome == 'success' && matrix.sdk != '2.12.0'
67
- - uses : coverallsapp/github-action@v1
67
+ - uses : coverallsapp/github-action@30402dfd78555606e51eff084546182de0647a4a
68
68
if : always() && steps.install.outcome == 'success' && matrix.sdk != '2.12.0'
69
69
with :
70
70
flag-name : os:${{ matrix.os }}/dart:${{ matrix.sdk }}/platform:${{ matrix.platform }}
75
75
if : ${{ always() }}
76
76
runs-on : ubuntu-latest
77
77
steps :
78
- - uses : coverallsapp/github-action@v1
78
+ - uses : coverallsapp/github-action@30402dfd78555606e51eff084546182de0647a4a
79
79
with :
80
80
parallel-finished : true
Original file line number Diff line number Diff line change 1
- ## v2 .1.0
1
+ ## 2 .1.0
2
2
- ** Breaking** ` wrapAsYamlNode(value, collectionStyle, scalarStyle) ` will apply
3
3
` collectionStyle ` and ` scalarStyle ` recursively when wrapping a children of
4
4
` Map ` and ` List ` .
11
11
rather than at end of list.
12
12
([ #23 ] ( https://github.com/dart-lang/yaml_edit/issues/23 ) )
13
13
14
- ## v2 .0.3
14
+ ## 2 .0.3
15
15
- Updated the value of the pubspec ` repository ` field.
16
16
17
- ## v2 .0.2
17
+ ## 2 .0.2
18
18
- Fix trailing whitespace after adding new key with block-value to map
19
19
([ #15 ] ( https://github.com/dart-lang/yaml_edit/issues/15 ) ).
20
20
- Updated ` repository ` and other meta-data in ` pubspec.yaml ` .
21
21
22
- ## v2 .0.1
22
+ ## 2 .0.1
23
23
- License changed to BSD, as this package is now maintained by the Dart team.
24
24
- Fixed minor lints.
25
25
26
- ## v2 .0.0
26
+ ## 2 .0.0
27
27
- Migrated to null-safety.
28
28
- API will no-longer return ` null ` in-place of a ` YamlNode ` , instead a
29
29
` YamlNode ` with ` YamlNode.value == null ` should be used. These are easily
30
30
created with ` wrapAsYamlNode(null) ` .
31
31
32
- ## v1 .0.3
32
+ ## 1 .0.3
33
33
34
34
- Fixed bug in adding an empty map as a map value.
35
35
36
- ## v1 .0.2
36
+ ## 1 .0.2
37
37
38
38
- Throws an error if the final YAML after edit is not parsable.
39
39
- Fixed bug in adding to empty map values, when it is followed by other content.
40
40
41
- ## v1 .0.1
41
+ ## 1 .0.1
42
42
43
43
- Updated behavior surrounding list and map removal.
44
44
- Fixed bug in dealing with empty values.
45
45
46
- ## v1 .0.0
46
+ ## 1 .0.0
47
47
48
48
- Initial release.
You can’t perform that action at this time.
0 commit comments