-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Expand file tree
/
Copy pathrenovate.json
More file actions
123 lines (123 loc) · 3.86 KB
/
renovate.json
File metadata and controls
123 lines (123 loc) · 3.86 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
{
"extends": [
"config:recommended"
],
"packageRules": [
{
"matchUpdateTypes": [
"major"
],
"enabled": false,
"matchPackageNames": [
"*"
]
},
{
"semanticCommitType": "fix",
"semanticCommitScope": null,
"matchPackageNames": [
"/^com.google.cloud:sdk-platform-java-config/"
]
},
{
"groupName": "First-party storage dependencies",
"matchPackageNames": [
"/^com.google.cloud:google-cloud-storage/",
"/^com.google.apis:google-api-services-storage/"
]
},
{
"matchManagers": [
"custom.regex"
],
"semanticCommitType": "chore",
"matchFileNames": [
"sdk-platform-java/dependencies.txt"
],
"matchDatasources": [
"maven"
],
"groupName": "Upper Bound Dependencies File",
"description": "Group all dependencies from the Upper Bound Dependencies File",
"enabled": true
}
],
"includePaths": [
"pom.xml",
"**/README.md",
"google-cloud-pom-parent/pom.xml",
"google-cloud-jar-parent/pom.xml",
"java-samples/native-image-sample/pom.xml",
"java-shared-dependencies/first-party-dependencies/pom.xml",
"java-shared-dependencies/third-party-dependencies/pom.xml",
"sdk-platform-java/dependencies.txt",
".kokoro/nightly/graalvm-native*.cfg",
".kokoro/nightly/graalvm-sub-jobs/native*/common.cfg",
".kokoro/presubmit/graalvm-native*.cfg",
".kokoro/presubmit/*-graalvm-native-presubmit.cfg",
"owl-bot-postprocessor/synthtool/gcp/templates/java-library/.kokoro/presubmit/graalvm-native*.cfg",
".github/workflows/ci.yaml",
".github/workflows/generated_files_sync.yaml",
".github/workflows/unmanaged_dependency_check.yaml"
],
"customManagers": [
{
"customType": "regex",
"fileMatch": [
"/^.kokoro/nightly/graalvm-native.*.cfg$/",
"/^.kokoro/presubmit/graalvm-native.*.cfg$/",
"/^.kokoro/presubmit/*-graalvm-native-presubmit.cfg$/",
"/^.kokoro/nightly/graalvm-sub-jobs/native.*/common.cfg$/",
"/^owl-bot-postprocessor/synthtool/gcp/templates/java-library/.kokoro/presubmit/graalvm-native.*.cfg$/"
],
"matchStrings": [
"value: \"gcr.io/cloud-devrel-public-resources/graalvm_sdk_platform.*:(?<currentValue>.*?)\""
],
"depNameTemplate": "com.google.cloud:sdk-platform-java-config",
"datasourceTemplate": "maven"
},
{
"customType": "regex",
"fileMatch": [
"/java-dns/README.md/",
"/java-notification/README.md/",
"/java-samples/native-image-sample/pom.xml/",
"/java-vertexai/README.md/"
],
"matchStrings": [
"<artifactId>libraries-bom</artifactId>\\s+<version>(?<currentValue>.*?)</version>"
],
"depNameTemplate": "com.google.cloud:libraries-bom",
"datasourceTemplate": "maven"
},
{
"customType": "regex",
"fileMatch": [
"/.github/workflows/ci.yaml/",
"/.github/workflows/generated_files_sync.yaml/"
],
"matchStrings": [
"library_generation_image_tag\\s*:\\s*(?<currentValue>.*?)\\n"
],
"depNameTemplate": "com.google.api:gapic-generator-java",
"datasourceTemplate": "maven"
},
{
"customType": "regex",
"fileMatch": [
"/^.github/workflows/unmanaged_dependency_check.yaml$/"
],
"matchStrings": [
"uses: googleapis/sdk-platform-java/java-shared-dependencies/unmanaged-dependency-check@google-cloud-shared-dependencies/v(?<currentValue>.+?)\\n"
],
"depNameTemplate": "com.google.cloud:sdk-platform-java-config",
"datasourceTemplate": "maven"
},
{
"customType": "regex",
"fileMatch": ["sdk-platform-java/dependencies.txt"],
"matchStrings": ["(?<depName>.*),(.*)=(?<currentValue>.*)"],
"datasourceTemplate": "maven"
}
]
}