generated from terraform-ibm-modules/terraform-ibm-module-template
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathrenovate.json
39 lines (39 loc) · 1.19 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
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["github>terraform-ibm-modules/common-dev-assets:commonRenovateConfig"],
"customManagers": [
{
"customType": "regex",
"description": "Update docker image digest to latest in variables.tf",
"fileMatch": ["variables.tf$"],
"datasourceTemplate": "docker",
"matchStrings": [
"default\\s*=\\s*\"(?<currentValue>[\\w.-]+)@(?<currentDigest>sha256:[a-f0-9]+)\"\\s*# docker datasource: (?<depName>[^\\s]+)"
]
},
{
"customType": "regex",
"description": "Update helm chart version to latest in variables.tf",
"fileMatch": ["variables.tf$"],
"datasourceTemplate": "helm_release",
"matchStrings": [
"default\\s*=\\s*\"(?<currentValue>.*?)\"\\s*# helm datasource: (?<depName>[^\\s]+)"
]
}
],
"labels": ["renovate"],
"packageRules": [
{
"matchManagers": ["helmv3"],
"groupName": "Charts and Images",
"commitMessageExtra": "to latest",
"group": true
},
{
"matchDatasources": ["docker"],
"groupName": "Charts and Images",
"commitMessageExtra": "to latest",
"group": true
}
]
}