|
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 | 11 | "customManagers": [ |
9 | 12 | { |
10 | 13 | "customType": "regex", |
11 | | - "fileMatch": ["/Dockerfile$", "/build.yaml$"], |
| 14 | + "managerFilePatterns": [ |
| 15 | + "//Dockerfile$/", |
| 16 | + "//build.yaml$/" |
| 17 | + ], |
12 | 18 | "matchStringsStrategy": "any", |
13 | 19 | "matchStrings": [ |
14 | 20 | "ARG BUILD_FROM=(?<depName>.*?):(?<currentValue>.*?)\\s+", |
|
18 | 24 | }, |
19 | 25 | { |
20 | 26 | "customType": "regex", |
21 | | - "fileMatch": ["/Dockerfile$"], |
| 27 | + "managerFilePatterns": [ |
| 28 | + "//Dockerfile$/" |
| 29 | + ], |
22 | 30 | "matchStringsStrategy": "any", |
23 | 31 | "matchStrings": [ |
24 | 32 | "\\s\\s(?<package>[a-z0-9][a-z0-9-_]+)=(?<currentValue>[a-z0-9-_.]+)\\s+" |
|
29 | 37 | }, |
30 | 38 | { |
31 | 39 | "customType": "regex", |
32 | | - "fileMatch": ["/Dockerfile$"], |
| 40 | + "managerFilePatterns": [ |
| 41 | + "//Dockerfile$/" |
| 42 | + ], |
33 | 43 | "matchStrings": [ |
34 | 44 | "ARG BOOKSTACK_VERSION=[\"']?(?<currentValue>.+?)[\"']?\\s+" |
35 | 45 | ], |
|
40 | 50 | ], |
41 | 51 | "packageRules": [ |
42 | 52 | { |
43 | | - "matchDatasources": ["repology"], |
| 53 | + "matchDatasources": [ |
| 54 | + "repology" |
| 55 | + ], |
44 | 56 | "automerge": true |
45 | 57 | }, |
46 | 58 | { |
47 | 59 | "groupName": "PHP", |
48 | | - "matchDatasources": ["repology"], |
| 60 | + "matchDatasources": [ |
| 61 | + "repology" |
| 62 | + ], |
49 | 63 | "automerge": true, |
50 | | - "matchDepNames": ["/alpine.*/php.*/"] |
| 64 | + "matchDepNames": [ |
| 65 | + "/alpine.*/php.*/" |
| 66 | + ] |
51 | 67 | }, |
52 | 68 | { |
53 | 69 | "groupName": "Add-on base image", |
54 | | - "matchDatasources": ["docker"] |
| 70 | + "matchDatasources": [ |
| 71 | + "docker" |
| 72 | + ] |
55 | 73 | }, |
56 | 74 | { |
57 | 75 | "groupName": "Add-on base image", |
58 | | - "matchDatasources": ["docker"], |
59 | | - "matchUpdateTypes": ["minor", "patch"], |
| 76 | + "matchDatasources": [ |
| 77 | + "docker" |
| 78 | + ], |
| 79 | + "matchUpdateTypes": [ |
| 80 | + "minor", |
| 81 | + "patch" |
| 82 | + ], |
60 | 83 | "automerge": true |
61 | 84 | } |
62 | 85 | ] |
|
0 commit comments