File tree Expand file tree Collapse file tree 1 file changed +31
-0
lines changed Expand file tree Collapse file tree 1 file changed +31
-0
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
+ version : 2
7
+ updates :
8
+ # Configuration for Dockerfile
9
+ - package-ecosystem : " docker"
10
+ directory : " /"
11
+ schedule :
12
+ interval : " weekly"
13
+ # Disable all pull requests for Docker dependencies
14
+ open-pull-requests-limit : 0
15
+
16
+ # Configuration for npm
17
+ - package-ecosystem : " npm"
18
+ directory : " /"
19
+ schedule :
20
+ interval : " weekly"
21
+ ignore :
22
+ # Ignore updates to packages that start with 'aws'
23
+ # Wildcards match zero or more arbitrary characters
24
+ - dependency-name : " aws*"
25
+ # Ignore some updates to the 'express' package
26
+ - dependency-name : " express"
27
+ # Ignore only new versions for 4.x and 5.x
28
+ versions : ["4.x", "5.x"]
29
+ # For all packages, ignore all patch updates
30
+ - dependency-name : " *"
31
+ update-types : ["version-update:semver-patch"]
You can’t perform that action at this time.
0 commit comments