-
-
Notifications
You must be signed in to change notification settings - Fork 81
Expand file tree
/
Copy pathrenovate.json
More file actions
25 lines (25 loc) · 700 Bytes
/
renovate.json
File metadata and controls
25 lines (25 loc) · 700 Bytes
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
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"automerge": true,
"platformAutomerge": true,
"automergeType": "pr",
"commitBody": "Release-As: {{newVersion}}",
"enabledManagers": ["regex"],
"regexManagers": [
{
"fileMatch": ["Dockerfile"],
"matchStrings": [
"THELOUNGE_VERSION\\??=(?<currentValue>[^\\s]+)"
],
"datasourceTemplate": "npm",
"packageNameTemplate": "thelounge",
"depNameTemplate": "thelounge"
}
],
"packageRules": [
{
"matchPackageNames": ["thelounge"],
"ignoreUnstable": false
}
]
}