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