This repository was archived by the owner on Mar 23, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 134
Expand file tree
/
Copy pathrenovate.json
More file actions
109 lines (109 loc) · 3.01 KB
/
renovate.json
File metadata and controls
109 lines (109 loc) · 3.01 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
{
"extends": [
":separateMajorReleases",
":combinePatchMinorReleases",
":ignoreUnstable",
":prImmediately",
":updateNotScheduled",
":automergeDisabled",
":ignoreModulesAndTests",
":maintainLockFilesDisabled"
],
"ignorePaths": [
".kokoro/requirements.txt"
],
"customManagers": [
{
"customType": "regex",
"managerFilePatterns": [
"/^.kokoro/continuous/graalvm-native.*.cfg$/",
"/^.kokoro/presubmit/graalvm-native.*.cfg$/"
],
"matchStrings": [
"value: \"gcr.io/cloud-devrel-public-resources/graalvm.*:(?<currentValue>.*?)\""
],
"depNameTemplate": "com.google.cloud:sdk-platform-java-config",
"datasourceTemplate": "maven"
},
{
"customType": "regex",
"managerFilePatterns": [
"/^.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"
}
],
"packageRules": [
{
"versioning": "docker",
"matchPackageNames": [
"/^com.google.guava:/"
]
},
{
"semanticCommitType": "build",
"semanticCommitScope": "deps",
"matchPackageNames": [
"/^org.apache.maven/",
"/^org.jacoco:/",
"/^org.codehaus.mojo:/",
"/^org.sonatype.plugins:/",
"/^com.coveo:/",
"/^com.google.cloud:google-cloud-shared-config/"
]
},
{
"semanticCommitType": "chore",
"semanticCommitScope": "deps",
"matchPackageNames": [
"/^com.google.cloud:google-cloud-bigquery$/",
"/^com.google.cloud:google-cloud-bigtable/",
"/^com.google.cloud:libraries-bom/",
"/^com.google.cloud.samples:shared-configuration/"
]
},
{
"semanticCommitType": "test",
"semanticCommitScope": "deps",
"matchPackageNames": [
"/^junit:junit/",
"/^com.google.truth:truth/",
"/^org.mockito:mockito-core/",
"/^org.objenesis:objenesis/",
"/^com.google.cloud:google-cloud-storage/"
]
},
{
"ignoreUnstable": false,
"matchPackageNames": [
"/^com.google.cloud:google-cloud-/"
]
},
{
"groupName": "jackson dependencies",
"matchPackageNames": [
"/^com.fasterxml.jackson.core/"
]
},
{
"matchPackageNames": [
"com.google.cloud:google-cloud-datacatalog-bom",
"com.google.cloud:google-cloud-bigqueryconnection-v1",
"com.google.cloud:google-cloud-bigqueryconnection"
],
"groupName": "Google Cloud Java Monorepo Updates",
"groupSlug": "google-cloud-java-monorepo-release-updates"
}
],
"semanticCommits": "enabled",
"dependencyDashboard": true,
"dependencyDashboardLabels": [
"type: process"
],
"prConcurrentLimit": 0,
"prHourlyLimit": 0
}