-
Notifications
You must be signed in to change notification settings - Fork 0
/
renovate.json5
50 lines (50 loc) · 1.14 KB
/
renovate.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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
extends: ["github>aquaproj/aqua-renovate-config#2.6.0"],
prConcurrentLimit: 10,
enabledManagers: ["custom.regex", "terraform", "mise"], // update aqua and terraform.
labels: ["dependencies"],
assigneesFromCodeOwners: true,
packageRules: [
{
matchUpdateTypes: ["major"],
addLabels: ["major"],
},
{
matchUpdateTypes: ["minor"],
addLabels: ["minor"],
automerge: true,
},
{
matchUpdateTypes: ["patch"],
addLabels: ["patch"],
automerge: true,
},
{
matchPackageNames: [
"/^.*terraform.*$/",
"/^.*tofu.*$/",
"/^.*terragrunt.*$/",
"/^.*tflint.*$/",
"/^.*tfsec.*$/",
"/^.*tfcmt.*$/",
],
addLabels: ["terraform-deps"],
},
{
matchPackageNames: ["twistedpair/google-cloud-sdk"],
labels: ["minor"],
automerge: true,
},
{
matchDatasources: ["terraform-provider"],
registryUrls: ["https://registry.opentofu.org"],
},
],
mise: {
fileMatch: [
"(^|/)\\.?mise\\.toml$",
"(^|/)\\.?mise/config\\.toml$",
"(^|/)\\.?mise/config.*\\.toml$",
],
},
}