-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathrenovate.json
More file actions
25 lines (25 loc) · 771 Bytes
/
renovate.json
File metadata and controls
25 lines (25 loc) · 771 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",
"extends": ["github>jkroepke/renovate-config:github-action"],
"customDatasources": {
"dotnet-sdk": {
"defaultRegistryUrlTemplate": "https://dotnetcli.blob.core.windows.net/dotnet/release-metadata/releases-index.json",
"transformTemplates": [
"{\"releases\": [$.\"releases-index\"[ $.\"support-phase\" = \"active\" ].{\"version\": $.\"latest-sdk\"}]}"
]
}
},
"customManagers": [
{
"customType": "regex",
"managerFilePatterns": [
"/README.md/"
],
"matchStrings": [
"\\*\\*\\.NET SDK (?<currentValue>\\S+)\\*\\*"
],
"datasourceTemplate": "custom.dotnet-sdk",
"depNameTemplate": "dotnet-sdk"
}
]
}