-
Notifications
You must be signed in to change notification settings - Fork 8
/
renovate.json
54 lines (54 loc) · 1.62 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
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended",
"schedule:nonOfficeHours",
"customManagers:githubActionsVersions",
"customManagers:makefileVersions"
],
"labels": ["dependencies"],
"prConcurrentLimit": 25,
"minimumReleaseAge": "3 days",
"timezone": "Europe/Vienna",
"rebaseWhen": "conflicted",
"postUpdateOptions": [
"gomodTidy",
"gomodMassage"
],
"packageRules": [
{
"matchPackagePatterns": ["^(go\\.opentelemetry\\.io\/collector|github\\.com\/open-telemetry\/opentelemetry-collector-contrib)\/"],
"matchPackageNames": ["open-telemetry/opentelemetry-collector-contrib"],
"groupName": "OpenTelemetry Collector"
},
{
"matchDatasources": ["golang-version"],
"rangeStrategy": "bump"
}
],
"customManagers": [
{
"customType": "regex",
"fileMatch": [
"(^|\\/)Makefile$",
"(^|\\/)Dockerfile",
"(^|\\/).*\\.ya?ml$",
"(^|\\/).*\\.toml$",
"(^|\\/).*\\.sh$"
],
"matchStrings": [
"# renovate: datasource=(?<datasource>.+?) depName=(?<depName>.+?)\\s.*(:|=|\\?=|:=|\\+=) ?\\\"?(?<currentValue>.+?)?\\\"?\\s"
]
},
{
"customType": "regex",
"fileMatch": [
"^manifest.yaml$"
],
"datasourceTemplate": "go",
"matchStrings": [
"- gomod: (?<depName>(go\\.opentelemetry\\.io\/collector|github\\.com\/open-telemetry\/opentelemetry-collector-contrib|github\\.com\/dynatrace\/dynatrace-otel-collector)\/([A-Za-z0-9]+\/)*[A-Za-z0-9]+) (?<currentValue>v\\d+\\.\\d+\\.\\d+)\\n"
]
}
]
}