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/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file
5
+
6
+ version : 2
7
+ updates :
8
+ # Maintain dependencies for python
9
+ - package-ecosystem : " pip" # See documentation for possible values
10
+ directory : " /" # Location of package manifests
11
+ schedule :
12
+ interval : " weekly"
13
+ allow :
14
+ - dependency-type : " direct"
15
+ ignore :
16
+ - dependency-name : " *"
17
+ update-types : ["version-update:semver-major"]
18
+ groups :
19
+ all-python-dependencies :
20
+ patterns : ["*"]
21
+ # Maintain dependencies for npm
22
+ - package-ecosystem : " npm"
23
+ directory : " /"
24
+ schedule :
25
+ interval : " weekly"
26
+ groups :
27
+ all-npm-dependencies :
28
+ patterns : ["*"]
29
+ ignore :
30
+ - dependency-name : " *"
31
+ update-types : ["version-update:semver-major"]
You can’t perform that action at this time.
0 commit comments