-
Notifications
You must be signed in to change notification settings - Fork 1
/
renovate.json
31 lines (31 loc) · 937 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
28
29
30
31
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended"
],
"customManagers": [
{
"customType": "regex",
"fileMatch": [
"^layouts/.+\\.html?$"
],
"matchStrings": [
"resources\\.GetRemote\\s+\"https://github\\.com/(?<depName>[a-z0-9-]+/[a-z0-9-]+)/releases/download/(?<currentValue>[a-z0-9\\.-]+)/[^\"]+\"",
"resources\\.GetRemote\\s+\"https://raw\\.githubusercontent\\.com/(?<depName>[a-z0-9-]+/[a-z0-9-]+)/(?<currentValue>[a-z0-9\\.-]+)/[^\"]+\""
],
"datasourceTemplate": "github-releases"
},
{
"customType": "regex",
"fileMatch": [
"^netlify\\.toml$"
],
"matchStrings": [
"HUGO_VERSION\\s*=\\s*\"(?<currentValue>[^\"]+)\""
],
"packageNameTemplate": "gohugoio/hugo",
"depNameTemplate": "hugo",
"datasourceTemplate": "github-releases"
}
]
}