-
Notifications
You must be signed in to change notification settings - Fork 176
/
Copy pathdependabot.yml
77 lines (73 loc) · 1.76 KB
/
dependabot.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
# Documentation:
# * https://docs.github.com/en/code-security/supply-chain-security/keeping-your-dependencies-updated-automatically/enabling-and-disabling-dependabot-version-updates
# * https://docs.github.com/en/code-security/supply-chain-security/keeping-your-dependencies-updated-automatically/configuration-options-for-dependency-updates
version: 2
updates:
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "weekly"
day: "sunday"
commit-message:
prefix: "chore(deps):"
- package-ecosystem: "docker"
directory: "/"
schedule:
interval: "weekly"
day: "sunday"
commit-message:
prefix: "chore(deps):"
- package-ecosystem: "npm"
directory: "/ui"
versioning-strategy: increase
schedule:
interval: "weekly"
day: "sunday"
commit-message:
prefix: "chore(deps):"
groups:
js-patch:
update-types:
- "patch"
js-minor:
update-types:
- "minor"
js-major:
update-types:
- "major"
- package-ecosystem: "gomod"
directory: "/"
schedule:
interval: "weekly"
day: "sunday"
commit-message:
prefix: "chore(deps):"
groups:
go-patch:
update-types:
- "patch"
go-minor:
update-types:
- "minor"
go-major:
update-types:
- "major"
- package-ecosystem: "gomod"
directory: "/hack/tools"
schedule:
interval: "weekly"
day: "sunday"
commit-message:
prefix: "chore(deps/tools):"
allow:
- dependency-type: "direct"
groups:
go-patch:
update-types:
- "patch"
go-minor:
update-types:
- "minor"
go-major:
update-types:
- "major"