|
12 | 12 | "customManagers": [ |
13 | 13 | { |
14 | 14 | "customType": "regex", |
15 | | - "fileMatch": ["dependencies.txt"], |
16 | | - "matchStrings": ["(?<depName>.*),(.*)=(?<currentValue>.*)"], |
| 15 | + "managerFilePatterns": [ |
| 16 | + "/dependencies.txt/" |
| 17 | + ], |
| 18 | + "matchStrings": [ |
| 19 | + "(?<depName>.*),(.*)=(?<currentValue>.*)" |
| 20 | + ], |
17 | 21 | "datasourceTemplate": "maven" |
18 | 22 | }, |
19 | 23 | { |
20 | 24 | "customType": "regex", |
21 | | - "fileMatch": [ |
22 | | - "^gax-java/dependencies\\.properties$" |
| 25 | + "managerFilePatterns": [ |
| 26 | + "/^gax-java/dependencies\\.properties$/" |
23 | 27 | ], |
24 | 28 | "matchStrings": [ |
25 | 29 | "=(?<depName>.+\\:.+?):(?<currentValue>.+?)\\n" |
|
28 | 32 | }, |
29 | 33 | { |
30 | 34 | "customType": "regex", |
31 | | - "fileMatch": [ |
32 | | - "^gax-java/dependencies\\.properties$" |
| 35 | + "managerFilePatterns": [ |
| 36 | + "/^gax-java/dependencies\\.properties$/" |
33 | 37 | ], |
34 | 38 | "matchStrings": [ |
35 | 39 | "version\\.google_java_format=(?<currentValue>.+?)\\n" |
|
39 | 43 | }, |
40 | 44 | { |
41 | 45 | "customType": "regex", |
42 | | - "fileMatch": [ |
43 | | - "^gax-java/dependencies\\.properties$", |
44 | | - "^\\.cloudbuild/library_generation/library_generation.*\\.Dockerfile$" |
| 46 | + "managerFilePatterns": [ |
| 47 | + "/^gax-java/dependencies\\.properties$/", |
| 48 | + "/^\\.cloudbuild/library_generation/library_generation.*\\.Dockerfile$/" |
45 | 49 | ], |
46 | 50 | "matchStrings": [ |
47 | 51 | "version\\.io_grpc=(?<currentValue>.+?)\\n", |
|
52 | 56 | }, |
53 | 57 | { |
54 | 58 | "customType": "regex", |
55 | | - "fileMatch": [ |
56 | | - "^.kokoro/presubmit/graalvm-native.*.cfg$" |
| 59 | + "managerFilePatterns": [ |
| 60 | + "/^.kokoro/presubmit/graalvm-native.*.cfg$/" |
57 | 61 | ], |
58 | 62 | "matchStrings": [ |
59 | 63 | "value: \"gcr.io/cloud-devrel-kokoro-resources/graalvm:(?<currentValue>.*?)\"", |
|
64 | 68 | }, |
65 | 69 | { |
66 | 70 | "customType": "regex", |
67 | | - "fileMatch": [ |
68 | | - "^.cloudbuild/*" |
| 71 | + "managerFilePatterns": [ |
| 72 | + "/^.cloudbuild/*/" |
69 | 73 | ], |
70 | 74 | "matchStrings": [ |
71 | 75 | " _JAVA_SHARED_CONFIG_VERSION: '(?<currentValue>.+?)'" |
|
75 | 79 | }, |
76 | 80 | { |
77 | 81 | "customType": "regex", |
78 | | - "fileMatch": [ |
79 | | - "^.cloudbuild/library_generation/library_generation.*\\.Dockerfile$" |
| 82 | + "managerFilePatterns": [ |
| 83 | + "/^.cloudbuild/library_generation/library_generation.*\\.Dockerfile$/" |
80 | 84 | ], |
81 | 85 | "matchStrings": [ |
82 | 86 | "OWLBOT_CLI_COMMITTISH=(?<currentDigest>.*?)\\n" |
|
219 | 223 | }, |
220 | 224 | { |
221 | 225 | "matchManagers": [ |
222 | | - "regex" |
| 226 | + "custom.regex" |
223 | 227 | ], |
224 | 228 | "semanticCommitType": "chore", |
225 | | - "matchFileNames": ["dependencies.txt"], |
226 | | - "matchDatasources": ["maven"], |
| 229 | + "matchFileNames": [ |
| 230 | + "dependencies.txt" |
| 231 | + ], |
| 232 | + "matchDatasources": [ |
| 233 | + "maven" |
| 234 | + ], |
227 | 235 | "groupName": "Upper Bound Dependencies File", |
228 | 236 | "description": "Group all dependencies from the Upper Bound Dependencies File" |
229 | 237 | } |
|
0 commit comments