-
Notifications
You must be signed in to change notification settings - Fork 4
/
renovate.json
51 lines (51 loc) · 1.71 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
{
"extends": ["config:base", ":disableRateLimiting"],
"prHourlyLimit": 0,
"dependencyDashboard": true,
"packageRules": [
{
"matchDatasources": ["docker"],
"matchUpdateTypes": ["minor", "patch"],
"automergeType": "branch",
"automerge": true,
"requiredStatusChecks": null
},
{
"matchDatasources": ["docker"],
"matchPackagePrefixes": ["ghcr.io/linuxserver/jellyfin"],
"allowedVersions": "<=2000"
},
{
"matchDatasources": ["docker"],
"matchPackagePrefixes": ["bitnami/postgresql"],
"allowedVersions": "<=15"
},
{
"matchPackageNames": ["librespot-org/librespot-java"],
"extractVersion": "^v(?<version>.*)$"
},
{
"matchDatasources": ["docker"],
"matchPackagePrefixes": ["ghcr.io/linuxserver", "linuxserver/"],
"versionScheme": "regex:^((?<compatibility>.*?)-)?(?<major>\\d+)\\.(?<minor>\\d+)\\.(?<patch>[\\d\\w\\-]+)(\\.(?<build>[\\d\\w\\-]+))?-ls(?<revision>\\d+)$"
}
],
"regexManagers": [
{
"fileMatch": ["Dockerfile"],
"matchStrings": [
"github\\.com\\/(?<depName>.*?)\\/releases\\/download\\/(?<currentValue>.*)\\/sops-.*\\.linux",
"github\\.com\\/(?<depName>.*?)\\/releases\\/download\\/.*\\/sops-(?<currentValue>.*)\\.linux",
"github\\.com\\/(?<depName>.*?) --version (?<currentValue>.*)"
],
"datasourceTemplate": "github-releases"
},
{
"fileMatch": ["^Dockerfile$"],
"matchStrings": [
"datasource=(?<datasource>.*?) depName=(?<depName>.*?)( versioning=(?<versioning>.*?))?\\sENV .*?_VERSION=(?<currentValue>.*)\\s"
],
"versioningTemplate": "{{#if versioning}}{{{versioning}}}{{else}}semver{{/if}}"
}
]
}