|
1 | 1 | { |
2 | 2 | "$schema": "https://docs.renovatebot.com/renovate-schema.json", |
3 | | - "extends": [ |
4 | | - "config:recommended" |
5 | | - ], |
6 | | - "enabledManagers": [ |
7 | | - "github-actions", |
8 | | - "regex" |
9 | | - ], |
| 3 | + "extends": ["config:recommended"], |
| 4 | + "enabledManagers": ["github-actions", "regex"], |
10 | 5 | "customManagers": [ |
11 | 6 | { |
12 | 7 | "customType": "regex", |
13 | | - "fileMatch": [ |
14 | | - "^docker-compose\\.yml$", |
15 | | - "^relay/docker-compose\\.yml$" |
16 | | - ], |
17 | | - "matchStrings": [ |
18 | | - "image:\\s*obolnetwork/charon:\\$\\{CHARON_VERSION:-v?(?<currentValue>[\\w.-]+)}" |
19 | | - ], |
| 8 | + "fileMatch": ["^docker-compose\\.yml$", "^relay/docker-compose\\.yml$"], |
| 9 | + "matchStrings": ["image:\\s*obolnetwork/charon:\\$\\{CHARON_VERSION:-v?(?<currentValue>[\\w.-]+)}"], |
20 | 10 | "datasourceTemplate": "github-releases", |
21 | 11 | "depNameTemplate": "ObolNetwork/charon", |
22 | 12 | "versioningTemplate": "semver" |
23 | 13 | }, |
24 | 14 | { |
25 | 15 | "customType": "regex", |
26 | | - "fileMatch": [ |
27 | | - "(^|/)docker-compose\\.ya?ml$", |
28 | | - "(^|/)compose[^/]*\\.ya?ml$" |
29 | | - ], |
30 | | - "matchStrings": [ |
31 | | - "image:\\s*(?<depName>[^:\\s]+):\\$\\{[A-Z_]+:-(?<currentValue>[^}]+)\\}" |
32 | | - ], |
| 16 | + "fileMatch": ["(^|/)docker-compose\\.ya?ml$", "(^|/)compose[^/]*\\.ya?ml$"], |
| 17 | + "matchStrings": ["image:\\s*(?<depName>[^:\\s]+):\\$\\{[A-Z_]+:-(?<currentValue>[^}]+)\\}"], |
33 | 18 | "datasourceTemplate": "docker" |
34 | 19 | } |
35 | 20 | ], |
36 | 21 | "packageRules": [ |
37 | 22 | { |
38 | | - "matchManagers": [ |
39 | | - "github-actions" |
40 | | - ], |
41 | | - "labels": [ |
42 | | - "renovate/github-actions" |
43 | | - ], |
| 23 | + "description": "GitHub Actions CI updates", |
| 24 | + "matchManagers": ["github-actions"], |
| 25 | + "labels": ["renovate/github-actions"], |
44 | 26 | "groupName": "GitHub Actions updates" |
45 | 27 | }, |
46 | 28 | { |
47 | | - "matchManagers": [ |
48 | | - "regex" |
49 | | - ], |
50 | | - "matchDepNames": [ |
51 | | - "ObolNetwork/charon" |
52 | | - ], |
53 | | - "labels": [ |
54 | | - "renovate/charon" |
55 | | - ] |
| 29 | + "description": "Charon updates", |
| 30 | + "matchManagers": ["regex"], |
| 31 | + "matchDepNames": ["ObolNetwork/charon"], |
| 32 | + "labels": ["renovate/charon"], |
| 33 | + "groupName": "Charon updates" |
56 | 34 | }, |
57 | 35 | { |
58 | | - "matchManagers": [ |
59 | | - "regex" |
60 | | - ], |
61 | | - "labels": [ |
62 | | - "renovate/docker" |
63 | | - ] |
| 36 | + "description": "Docker dependency updates (non-Charon)", |
| 37 | + "matchManagers": ["regex"], |
| 38 | + "excludeDepNames": ["ObolNetwork/charon"], |
| 39 | + "labels": ["renovate/docker"], |
| 40 | + "groupName": "Docker dependency updates" |
64 | 41 | } |
65 | 42 | ] |
66 | 43 | } |
0 commit comments