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