-
Notifications
You must be signed in to change notification settings - Fork 447
/
renovate.json
74 lines (74 loc) · 2.45 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
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended",
":rebaseStalePrs",
":automergeStableNonMajor"
],
"schedule": ["on the first day of the month"],
"enabledManagers": ["custom.regex", "github-actions", "terraform", "npm"],
"labels": ["content/other"],
"packageRules": [
{
"matchManagers": ["github-actions"],
"groupName": "GitHub Actions"
},
{
"matchManagers": ["terraform"],
"groupName": "Terraform"
},
{
"matchDepTypes": ["required_version"],
"enabled": false
},
{
"matchDepNames": ["kubernetes/kubernetes"],
"allowedVersions": "/^v1.30.[0-9]+$/"
},
{
"matchDepNames": ["kubernetes/autoscaler"],
"extractVersion": "^cluster-autoscaler-(?<version>.*)$",
"allowedVersions": "/^1.30.[0-9]+$/"
},
{
"automerge": true,
"matchCurrentVersion": ">= 1.0.0",
"matchUpdateTypes": ["minor", "patch"],
"matchManagers": ["custom.regex"]
},
{
"matchPackagePatterns": ["^@docusaurus"],
"enabled": false
}
],
"customManagers": [
{
"customType": "regex",
"fileMatch": ["lab/scripts/installer.sh"],
"matchStrings": [
"depName=(?<depName>.*?)( versioning=(?<versioning>.*?))?\\s.*?_version='(?<currentValue>.*)'\\s"
],
"datasourceTemplate": "github-releases",
"versioningTemplate": "{{#if versioning}}{{{versioning}}}{{else}}semver{{/if}}"
},
{
"customType": "regex",
"fileMatch": ["vars\\.tf$"],
"matchStrings": [
"#\\s*renovate: datasource=(?<datasource>.*?) depName=(?<depName>.*?)( versioning=(?<versioning>.*?))?(?: extractVersion=(?<extractVersion>.*?))?\\s*default\\s*=\\s*\"(?<currentValue>.*)\""
],
"versioningTemplate": "{{#if versioning}}{{{versioning}}}{{/if}}"
},
{
"customType": "regex",
"fileMatch": ["vars\\.tf$"],
"matchStrings": [
"#\\s*renovate-helm: depName=(?<depName>.*?)( registryUrl=(?<registryUrl>.*?))?( versioning=(?<versioning>.*?))?(?: extractVersion=(?<extractVersion>.*?))?\\s*default\\s*=\\s*\"(?<currentValue>.*)\""
],
"datasourceTemplate": "helm",
"versioningTemplate": "{{#if versioning}}{{{versioning}}}{{/if}}",
"registryUrlTemplate": "{{#if registryUrl}}{{{registryUrl}}}{{else}}https://aws.github.io/eks-charts{{/if}}"
}
],
"ignoreDeps": ["github.com/aws-ia/terraform-aws-eks-blueprints"]
}