|
2 | 2 | "$schema": "https://docs.renovatebot.com/renovate-schema.json", |
3 | 3 | "rebaseWhen": "behind-base-branch", |
4 | 4 | "dependencyDashboard": true, |
5 | | - "labels": ["dependencies", "no-stale"], |
| 5 | + "labels": [ |
| 6 | + "dependencies", |
| 7 | + "no-stale" |
| 8 | + ], |
6 | 9 | "commitMessagePrefix": "⬆️", |
7 | 10 | "commitMessageTopic": "{{depName}}", |
8 | | - "regexManagers": [ |
| 11 | + "customManagers": [ |
9 | 12 | { |
10 | | - "fileMatch": ["/Dockerfile$", "/build.yaml$"], |
| 13 | + "customType": "regex", |
| 14 | + "fileMatch": [ |
| 15 | + "/Dockerfile$", |
| 16 | + "/build.yaml$" |
| 17 | + ], |
11 | 18 | "matchStringsStrategy": "any", |
12 | 19 | "matchStrings": [ |
13 | 20 | "ARG BUILD_FROM=(?<depName>.*?):(?<currentValue>.*?)\\s+", |
|
16 | 23 | "datasourceTemplate": "docker" |
17 | 24 | }, |
18 | 25 | { |
19 | | - "fileMatch": ["/Dockerfile$"], |
| 26 | + "customType": "regex", |
| 27 | + "fileMatch": [ |
| 28 | + "/Dockerfile$" |
| 29 | + ], |
20 | 30 | "matchStringsStrategy": "any", |
21 | 31 | "matchStrings": [ |
22 | 32 | "\\s\\s(?<package>[a-z0-9][a-z0-9-_]+)=(?<currentValue>[a-z0-9-_.]+)\\s+" |
|
26 | 36 | "depNameTemplate": "alpine_3_19/{{package}}" |
27 | 37 | }, |
28 | 38 | { |
29 | | - "fileMatch": ["/Dockerfile$"], |
| 39 | + "customType": "regex", |
| 40 | + "fileMatch": [ |
| 41 | + "/Dockerfile$" |
| 42 | + ], |
30 | 43 | "matchStrings": [ |
31 | 44 | "ARG OVERSEERR_VERSION=[\"']?(?<currentValue>.+?)[\"']?\\s+" |
32 | 45 | ], |
|
36 | 49 | ], |
37 | 50 | "packageRules": [ |
38 | 51 | { |
39 | | - "matchDatasources": ["repology"], |
| 52 | + "matchDatasources": [ |
| 53 | + "repology" |
| 54 | + ], |
40 | 55 | "automerge": true |
41 | 56 | }, |
42 | 57 | { |
43 | 58 | "groupName": "Add-on base image", |
44 | | - "matchDatasources": ["docker"] |
| 59 | + "matchDatasources": [ |
| 60 | + "docker" |
| 61 | + ] |
45 | 62 | }, |
46 | 63 | { |
47 | 64 | "groupName": "Add-on base image", |
48 | | - "matchDatasources": ["docker"], |
49 | | - "matchUpdateTypes": ["minor", "patch"], |
| 65 | + "matchDatasources": [ |
| 66 | + "docker" |
| 67 | + ], |
| 68 | + "matchUpdateTypes": [ |
| 69 | + "minor", |
| 70 | + "patch" |
| 71 | + ], |
50 | 72 | "automerge": true |
51 | 73 | } |
52 | 74 | ] |
|
0 commit comments