-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrenovate.json
26 lines (26 loc) · 952 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
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["config:recommended"],
"baseBranches": ["development"],
"packageRules": [
{
"matchUpdateTypes": ["minor"],
"groupName": "all minor updates",
"groupSlug": "all-minor"
},
{"matchUpdateTypes": ["patch"], "automerge": true}
],
"customManagers": [
{
"customType": "regex",
"fileMatch": ["(^|/)versions\\.ts$"],
"matchStrings": [
"[a-zA-Z]+:\\s*\\{\\s*version:\\s*\"(?<currentValue>[^\"]*)\",\\s*depName:\\s*\"(?<depName>[^\"]*)\",\\s*datasource:\\s*\"(?<datasource>[^\"]*)\",\\s*versioning:\\s*\"(?<versioning>[^\"]*)\"(?:,\\s*registryUrl:\\s*\"(?<registryUrl>[^\"]*)\")?,?\\s*\\}"
],
"datasourceTemplate": "{{datasource}}",
"depNameTemplate": "{{depName}}",
"versioningTemplate": "{{versioning}}",
"registryUrlTemplate": "{{#if registryUrl}}{{registryUrl}}{{/if}}"
}
]
}