-
Notifications
You must be signed in to change notification settings - Fork 0
/
renovate.json5
40 lines (40 loc) · 1.19 KB
/
renovate.json5
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
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["config:base"],
"timezone": "Europe/Paris",
"docker-compose": {
"fileMatch": ["^.*\\.ya?ml$"]
},
"assignees": ["TheToto"],
"automerge": false,
"ignoreTests": true,
"automergeSchedule": [
"after 3:00am and before 6:00am"
],
"packageRules": [
{
"matchUpdateTypes": ["patch"],
"automerge": true
},
{
"matchUpdateTypes": ["minor"],
"matchCurrentVersion": "!/^0/",
"automerge": true
},
{
"matchManagers": ["docker-compose"],
"matchPackageNames": ["lscr.io/linuxserver/overseerr", "lscr.io/linuxserver/tautulli"],
"allowedVersions": "<2000" // There is 2021.x.x tags
},
{
"matchManagers": ["docker-compose"],
"matchPackageNames": ["lscr.io/linuxserver/calibre-web"],
"allowedVersions": "<2" // Actual versions are 0.x. There is 2021.x.x and v2, v3, v4 tags...
},
{
"matchManagers": ["docker-compose"],
"matchPackageNames": ["lscr.io/linuxserver/qbittorrent"],
"allowedVersions": "<10" // Actual version is 3.x.x. There is 14.x.x, 20.x.x tags...
}
]
}