-
Notifications
You must be signed in to change notification settings - Fork 124
/
renovate.json
53 lines (53 loc) · 1.42 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
52
53
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended",
":semanticCommits"
],
"ignorePaths": [
"**/anthos-multi-cloud/**",
"**/anthos-bm-openstack-terraform/**",
"**/anthos-bm-edge-deployment/**"
],
"prConcurrentLimit": 5,
"minimumReleaseAge": "7 days",
"labels": ["dependencies"],
"vulnerabilityAlerts": {
"labels": [
"type:security"
],
"minimumReleaseAge": null
},
"schedule": [
"every 1 months on the first day of the month"
],
"timezone": "America/New_York",
"packageRules": [
{
"matchManagers": ["gomod"],
"postUpdateOptions": ["gomodTidy", "gomodUpdateImportPaths"]
}
],
"customManagers": [
{
"customType": "regex",
"fileMatch": ["(^|/)Makefile$"],
"matchStrings": [
"DOCKER_TAG_VERSION_DEVELOPER_TOOLS := (?<currentValue>.*?)\\n"
],
"datasourceTemplate": "docker",
"registryUrlTemplate": "https://gcr.io/cloud-foundation-cicd",
"depNameTemplate": "cft/developer-tools"
},
{
"customType": "regex",
"fileMatch": ["(^|/)build/(int|lint)\\.cloudbuild\\.yaml$"],
"matchStrings": [
" _DOCKER_TAG_VERSION_DEVELOPER_TOOLS: '(?<currentValue>.*?)'\\n"
],
"datasourceTemplate": "docker",
"registryUrlTemplate": "https://gcr.io/cloud-foundation-cicd",
"depNameTemplate": "cft/developer-tools"
}
]
}