forked from aenix-io/etcd-operator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
renovate.json
27 lines (27 loc) · 839 Bytes
/
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
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended"
],
"customManagers": [
{
"customType": "regex",
"fileMatch": ["^Makefile$"],
"matchStrings": [
"# renovate: datasource=(?<datasource>.*?) depName=(?<depName>.*?)( versioning=(?<versioning>.*?))?( registryUrl=(?<registryUrl>.*?))?\\s.*?_VERSION \\?= (?<currentValue>.*)\\s"
],
"versioningTemplate": "{{#if versioning}}{{{versioning}}}{{else}}semver{{/if}}"
}
],
"packageRules": [
{
"description": "Automerge grouped non-major updates",
"matchUpdateTypes": ["minor", "patch"],
"groupName": "grouped non-major updates",
"matchPackagePatterns": ["*"],
"schedule": ["* * * * 6"],
"labels": ["ok-to-test"],
"automerge": true
}
]
}