generated from onedr0p/cluster-template
-
Notifications
You must be signed in to change notification settings - Fork 14
/
clusters.json5
32 lines (32 loc) · 866 Bytes
/
clusters.json5
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
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"packageRules": [
{
"description": ["Separate PRs for main cluster"],
"matchFileNames": [
"**/kubernetes/main/**",
"**/ansible/main/**"
],
"additionalBranchPrefix": "main-",
"commitMessageSuffix": " [main]"
},
{
"description": ["Separate PRs for network cluster"],
"matchFileNames": [
"**/kubernetes/network/**",
"**/ansible/network/**"
],
"additionalBranchPrefix": "network-",
"commitMessageSuffix": " [network]"
},
{
"description": ["Separate PRs for registry cluster"],
"matchFileNames": [
"**/kubernetes/registry/**",
"**/ansible/registry/**"
],
"additionalBranchPrefix": "registry-",
"commitMessageSuffix": " [registry]"
}
]
}