-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathrenovate.json5
More file actions
30 lines (30 loc) · 1.18 KB
/
renovate.json5
File metadata and controls
30 lines (30 loc) · 1.18 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
{
"extends": [
"github>capralifecycle/renovate-config:library",
"github>capralifecycle/renovate-config:aggressive"
],
"customManagers": [
{
// Keeps the OpenTelemetry Collector up-to-date inside a ts file.
// Renovate does not find the docker tag otherwise, and the docker tag becomes outdated.
"customType": "regex",
"managerFilePatterns": ["src/ecs/open-telemetry.ts"],
"matchStrings": [
"amazon\\\/aws-otel-collector:(?<currentValue>[^\"]+)"
],
"depNameTemplate": "amazon/aws-otel-collector",
"datasourceTemplate": "docker",
"versioningTemplate": "docker"
}
],
// We don't trust the "AWS Distro of OpenTelemetry Collector" enough to automerge.
"packageRules": [
{
"matchDepNames": ["amazon/aws-otel-collector"],
"automerge": false
}
],
"prBodyNotes": [
"{{#if (equals depName 'amazon/aws-otel-collector') }}:warning: Always validate the [otel config](https://github.com/capralifecycle/liflig-cdk/blob/master/assets/open-telemetry/otel-collector-task-metrics-config.yaml) for new versions using https://www.otelbin.io/#distro=adot%7E&distroVersion={{{newVersion}}}%7E . {{/if}}"
]
}