-
Notifications
You must be signed in to change notification settings - Fork 52
/
Copy pathrenovate.json
80 lines (80 loc) · 1.91 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
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
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:best-practices",
"customManagers:dockerfileVersions",
":label(dependencies)",
":automergeAll"
],
"postUpdateOptions": [
"gomodTidy",
"gomodUpdateImportPaths"
],
"platformAutomerge": true,
"automergeStrategy": "squash",
"prConcurrentLimit": 2,
"packageRules": [
{
"description": "Opt-out minimum Go version updates: https://github.com/renovatebot/renovate/issues/16715",
"matchManagers": [
"gomod"
],
"matchDepTypes": [
"golang"
],
"enabled": false
},
{
"description": "Disable devbox Go version updates, as they are taken care by our bosh-package-golang-release-based automation",
"matchManagers": [
"devbox"
],
"matchDepNames": [
"go"
],
"enabled": false
},
{
"description": "Disable bosh-cli version update, due to https://github.com/cloudfoundry/bosh-utils/issues/86",
"matchManagers": [
"devbox"
],
"matchDepNames": [
"bosh-cli"
],
"enabled": false
},
{
"description": "Group Ginkgo CLI and library updates together",
"groupName": "ginkgo",
"matchPackageNames": [
"/onsi/ginkgo/"
]
},
{
"description": "Disable OpenTelemetry-relevant updates",
"groupName": "opentelemetry",
"matchPackageNames": [
"/opentelemetry/",
"/ogen-go/ogen/"
],
"enabled": false
},
{
"description": "Group Cloud Foundry Logging and Metrics updates together",
"groupName": "Cloud Foundry Logging and Metrics",
"matchPackageNames": [
"/loggregator/",
"/log-cache/",
"/loggregator-agent-release/"
]
}
],
"nix": {
"enabled": true
},
"lockFileMaintenance": {
"enabled": true
},
"timezone": "Europe/Berlin"
}