forked from terraform-ibm-modules/common-dev-assets
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrenovate.json
33 lines (33 loc) · 1.26 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
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["local>terraform-ibm-modules/common-dev-assets:commonRenovateConfig"],
"group": true,
"groupName": "all",
"regexManagers": [
{
"fileMatch": ["^module-assets/ci/install-deps.sh$"],
"matchStrings": [
"datasource=(?<datasource>.*?) depName=(?<depName>.*?)( versioning=(?<versioning>.*?))?\\s.*?_VERSION=(?<currentValue>.*)\\s"
],
"versioningTemplate": "{{#if versioning}}{{{versioning}}}{{else}}semver{{/if}}"
},
{
"fileMatch": ["^.github/workflows/.*.yml$"],
"matchStrings": ["\\s+image: (?<depName>.*?)(?::(?<currentValue>.*?))?@(?<currentDigest>sha256:[a-f0-9]+)\\s"],
"datasourceTemplate": "docker"
}
],
"packageRules": [
{
"description": "Ignore updates to checkov until https://github.com/bridgecrewio/checkov/issues/5945 is fixed",
"matchPackageNames": ["bridgecrewio/checkov"],
"enabled": false
},
{
"description": "Only allow patch updates for terraform version. Minor and Major updates need to be done manually to keep in sync with what Schematics supports.",
"matchPackageNames": ["hashicorp/terraform"],
"matchUpdateTypes": ["major", "minor"],
"enabled": false
}
]
}