File tree Expand file tree Collapse file tree 2 files changed +7
-21
lines changed Expand file tree Collapse file tree 2 files changed +7
-21
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://help.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
5
-
6
1
version : 2
7
2
updates :
8
- - package-ecosystem : " npm"
9
- directory : " /"
10
- commit-message :
11
- prefix : " chore(deps): "
12
- rebase-strategy : " disabled"
3
+ - package-ecosystem : ' npm'
4
+ directory : ' /'
5
+ rebase-strategy : ' disabled'
13
6
schedule :
14
- interval : " daily"
15
- ignore :
16
- - dependency-name : " *"
17
- update-types : ["version-update:semver-patch", "version-update:semver-minor"] # Security updates are unaffected by this setting
18
-
19
- - package-ecosystem : " npm"
20
- directory : " /example-app"
7
+ interval : ' daily'
21
8
commit-message :
22
- prefix : " chore(deps): "
23
- schedule :
24
- interval : " monthly"
9
+ prefix : ' security: '
10
+ open-pull-requests-limit : 0 # only check security updates
Original file line number Diff line number Diff line change @@ -160,7 +160,7 @@ describe('E2E tests', function () {
160
160
if ( LABELS && service ) {
161
161
const expected = JSON . parse ( LABELS ) ;
162
162
const actual = service ?. spec ?. template ?. metadata ?. labels ;
163
- expect ( actual ) . to . deep . eq ( expected ) ;
163
+ expect ( actual ) . to . deep . include ( expected ) ;
164
164
}
165
165
} ) ;
166
166
You can’t perform that action at this time.
0 commit comments