-
Notifications
You must be signed in to change notification settings - Fork 6
/
renovate.json
35 lines (35 loc) · 1 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
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"local>clevyr/renovate-config-public",
":automergeAll"
],
"regexManagers": [
{
"fileMatch": ["\\.ya?ml$"],
"matchStrings": [
"# ?renovate datasource=(?<datasource>.+?) depName=(?<depName>.+)\\n.+: [\"']?(?<currentValue>.+?)[\"']?\\n"
]
},
{
"fileMatch": ["README.md"],
"matchStrings": [
"<!--renovate datasource=(?<datasource>.+?) repo=(?<depName>.+) -->\\n.*\\/Version-(?<currentValue>.+?)-"
]
}
],
"packageRules": [
{
"matchDatasources": ["docker"],
"matchPackageNames": ["ghcr.io/cloudnative-pg/postgresql"],
"versioning": "regex:^(?<major>\\d+)\\.(?<minor>\\d+)-(?<build>\\d+)$",
"groupName": "ghcr.io/cloudnative-pg/postgresql docker tag"
},
{
"matchDatasources": ["docker"],
"matchPackageNames": ["ghcr.io/cloudnative-pg/postgresql"],
"matchUpdateTypes": ["major"],
"enabled": false
}
]
}