-
Notifications
You must be signed in to change notification settings - Fork 227
/
renovate.json
51 lines (51 loc) · 1.19 KB
/
renovate.json
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
{
"extends": [
":separateMajorReleases",
":combinePatchMinorReleases",
":ignoreUnstable",
":prImmediately",
":updateNotScheduled",
":automergeDisabled",
":ignoreModulesAndTests",
":maintainLockFilesDisabled",
":autodetectPinVersions",
":dependencyDashboard"
],
"ignorePaths": [".kokoro/requirements.txt"],
"customManagers": [
{
"customType": "regex",
"fileMatch": [
"^.kokoro/presubmit/graalvm-native.*.cfg$"
],
"matchStrings": ["value: \"gcr.io/cloud-devrel-public-resources/graalvm.*:(?<currentValue>.*?)\""],
"depNameTemplate": "com.google.cloud:google-cloud-shared-config",
"datasourceTemplate": "maven"
}
],
"packageRules": [
{
"matchUpdateTypes": [
"major"
],
"matchPackagePatterns": [
"*"
],
"enabled": false
},
{
"packagePatterns": [
"^com.google.guava:"
],
"versionScheme": "docker"
},
{
"packagePatterns": ["^com.google.appengine:appengine-"],
"groupName": "AppEngine packages"
},
{
"packagePatterns": ["^com.google.auto.value:auto-"],
"groupName": "AutoValue packages"
}
]
}