-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrenovate.json
More file actions
40 lines (40 loc) · 1.13 KB
/
Copy pathrenovate.json
File metadata and controls
40 lines (40 loc) · 1.13 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
31
32
33
34
35
36
37
38
39
40
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["config:recommended"],
"dependencyDashboard": true,
"enabledManagers": [
"custom.regex",
"docker-compose",
"dockerfile",
"github-actions",
"gomod",
"npm"
],
"labels": ["dependencies"],
"prConcurrentLimit": 10,
"customManagers": [
{
"customType": "regex",
"description": "Update the bundled JetBrainsMono Nerd Font release.",
"managerFilePatterns": [
"/^ui/fonts/JetBrainsMonoNerdFont/manifest\\.json$/"
],
"matchStrings": ["\"releaseTag\":\\s*\"(?<currentValue>v[^\"]+)\""],
"depNameTemplate": "ryanoasis/nerd-fonts",
"datasourceTemplate": "github-releases",
"versioningTemplate": "semver-coerced"
}
],
"packageRules": [
{
"description": "Mark workflow dependency updates for the repository labeler.",
"matchManagers": ["github-actions"],
"addLabels": ["github-workflows"]
},
{
"description": "Keep Go module metadata tidy after dependency updates.",
"matchManagers": ["gomod"],
"postUpdateOptions": ["gomodTidy"]
}
]
}