File tree Expand file tree Collapse file tree 2 files changed +78
-4
lines changed
Expand file tree Collapse file tree 2 files changed +78
-4
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+
9+ # npm patch
10+ - package-ecosystem : " npm"
11+ directory : " /"
12+ schedule :
13+ interval : " weekly"
14+ commit-message :
15+ prefix : " :seedling:"
16+ labels :
17+ - " dependencies"
18+ - " patch"
19+ ignore :
20+ # For all deps
21+ - dependency-name : " *"
22+ # ignore all major updates
23+ update-types : ["version-update:semver-major", "version-update:semver-patch"]
24+
25+ # npm minor
26+ - package-ecosystem : " npm"
27+ directory : " /"
28+ schedule :
29+ interval : " weekly"
30+ commit-message :
31+ prefix : " :seedling:"
32+ labels :
33+ - " dependencies"
34+ - " minor"
35+ ignore :
36+ # For all deps
37+ - dependency-name : " *"
38+ # ignore all major updates
39+ update-types : ["version-update:semver-major", "version-update:semver-minor"]
40+
41+
42+ # npm major
43+ - package-ecosystem : " npm"
44+ directory : " /"
45+ schedule :
46+ interval : " weekly"
47+ commit-message :
48+ prefix : " :seedling:"
49+ labels :
50+ - " dependencies"
51+ - " major"
52+ draft : true
53+ ignore :
54+ # For all deps
55+ - dependency-name : " *"
56+ # ignore all major updates
57+ update-types : ["version-update:semver-minor", "version-update:semver-patch"]
58+
59+
60+ # Docker
61+ - package-ecosystem : " docker"
62+ directory : " /"
63+ schedule :
64+ interval : " weekly"
65+ commit-message :
66+ prefix : " :seedling:"
67+ labels :
68+ - " dependencies"
69+
70+ # github-actions
71+ - package-ecosystem : " github-actions"
72+ directory : " /"
73+ schedule :
74+ interval : " weekly"
75+ commit-message :
76+ prefix : " :seedling:"
77+ labels :
78+ - " dependencies"
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments