-
Notifications
You must be signed in to change notification settings - Fork 21
/
renovate.json
92 lines (92 loc) · 2.43 KB
/
renovate.json
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"extends": [
"github>defenseunicorns/uds-common//config/renovate.json5",
":semanticCommits",
":semanticCommitTypeAll(chore)"
],
"ignorePresets": [":ignoreModulesAndTests"],
"branchConcurrentLimit": 0,
"prConcurrentLimit": 0,
"prHourlyLimit": 0,
"separateMajorMinor": false,
"helm-values": {
"ignorePaths": ["src/neuvector/values"]
},
"packageRules": [
{
"matchFileNames": ["src/authservice/**"],
"groupName": "authservice",
"commitMessageTopic": "authservice"
},
{
"matchFileNames": ["src/istio/**"],
"groupName": "istio",
"commitMessageTopic": "istio"
},
{
"matchFileNames": ["src/vector/**"],
"groupName": "vector",
"commitMessageTopic": "vector"
},
{
"matchFileNames": ["src/velero/**"],
"groupName": "velero",
"commitMessageTopic": "velero"
},
{
"matchFileNames": ["src/tempo/**"],
"groupName": "tempo",
"commitMessageTopic": "tempo"
},
{
"matchFileNames": ["src/prometheus-stack/**"],
"groupName": "prometheus-stack",
"commitMessageTopic": "prometheus-stack"
},
{
"matchFileNames": ["src/neuvector/**"],
"groupName": "neuvector",
"commitMessageTopic": "neuvector"
},
{
"matchFileNames": ["src/metrics-server/**"],
"groupName": "metrics-server",
"commitMessageTopic": "metrics-server"
},
{
"matchFileNames": ["src/loki/**"],
"groupName": "loki",
"commitMessageTopic": "loki"
},
{
"matchFileNames": ["src/kiali/**"],
"groupName": "kiali",
"commitMessageTopic": "kiali"
},
{
"matchFileNames": ["src/keycloak/**"],
"groupName": "keycloak",
"commitMessageTopic": "keycloak"
},
{
"matchFileNames": ["src/grafana/**"],
"groupName": "grafana",
"commitMessageTopic": "grafana"
},
{
"matchFileNames": ["test/**", ".github/**", "bundles/**", "tasks/*.yaml", ".vscode/settings.json", "src/test/**"],
"groupName": "support-deps",
"commitMessageTopic": "support dependencies"
},
{
"matchFileNames": ["package.json", "package-lock.json", "tasks/create.yaml"],
"groupName": "pepr",
"commitMessageTopic": "pepr"
},
{
"matchPackageNames": ["defenseunicorns/uds-common", "mcr.microsoft.com/playwright"],
"groupName": "support-deps",
"commitMessageTopic": "support-deps"
}
]
}