File tree 3 files changed +36
-22
lines changed
3 files changed +36
-22
lines changed Original file line number Diff line number Diff line change 1
- # To get started with Dependabot version updates, you'll need to specify which
2
- # package ecosystems to update and where the package manifests are located.
3
- # Please see the documentation for all configuration options:
4
- # https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
5
-
6
1
version : 2
7
2
updates :
8
- - package-ecosystem : " pub" # See documentation for possible values
9
- directory : " /" # Location of package manifests
3
+ - package-ecosystem : github-actions
4
+ directory : /
5
+ schedule :
6
+ interval : weekly
7
+ groups :
8
+ gha :
9
+ patterns : ["*"]
10
+
11
+ - package-ecosystem : pub
12
+ directory : /
10
13
schedule :
11
- interval : " weekly"
12
- open-pull-requests-limit : 2
13
- ignore :
14
- - dependency-name : " *"
15
- update-types : ["version-update:semver-major"]
14
+ interval : weekly
15
+ groups :
16
+ major :
17
+ update-types : ["major"]
18
+ minor :
19
+ update-types : ["minor", "patch"]
Original file line number Diff line number Diff line change 1
1
name : CI
2
2
3
3
on :
4
+ pull_request :
4
5
push :
5
6
branches :
6
7
- ' master'
7
8
- ' test_consume_*'
8
- pull_request :
9
- branches :
10
- - ' **'
11
9
12
10
permissions :
13
11
pull-requests : write
14
12
contents : write
15
13
id-token : write
16
14
17
15
jobs :
16
+ build :
17
+ uses :
Workiva/gha-dart-oss/.github/workflows/[email protected]
18
+
18
19
dart :
19
20
strategy :
20
21
fail-fast : false
38
39
if : ${{ matrix.sdk == 'stable' && matrix.os == 'ubuntu' }}
39
40
run : dart run dart_dev format --check
40
41
- name : Tests
41
- run : dart run dart_dev test ${{ matrix.sdk != '2.19.6' && '--test-args="--exclude-tags dart2"' || '' }}
42
- - name : SBOM
43
- if : ${{ matrix.sdk == '2.19.6' && matrix.os == 'ubuntu' }}
44
- uses : anchore/sbom-action@v0
45
- with :
46
- path : ./ # Assuming actions/checkout default location
47
- format : cyclonedx-json
42
+ run : dart run dart_dev test ${{ matrix.sdk != '2.19.6' && '--test-args="--exclude-tags dart2"' || '' }}
Original file line number Diff line number Diff line change
1
+ name : Publish
2
+
3
+ on :
4
+ push :
5
+ tags :
6
+ - ' [0-9]+.[0-9]+.[0-9]+'
7
+
8
+ permissions :
9
+ contents : write
10
+ id-token : write
11
+ pull-requests : write
12
+
13
+ jobs :
14
+ publish :
15
+ uses :
Workiva/gha-dart-oss/.github/workflows/[email protected]
You can’t perform that action at this time.
0 commit comments