-
Notifications
You must be signed in to change notification settings - Fork 2
/
renovate.json
32 lines (32 loc) · 1.25 KB
/
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
32
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended"
],
"customManagers": [
{
"customType": "regex",
"fileMatch": ["(^|/)\\.github/workflows/deploy\\.yaml$"],
"matchStrings": ["#\\s?renovate: rust-lang/mdBook\\s*MDBOOK_VERSION:\\s*'(?<currentValue>\\d\\.\\d+\\.\\d+)'"],
"depNameTemplate": "mdbook",
"packageNameTemplate": "rust-lang/mdBook",
"datasourceTemplate": "github-releases"
},
{
"customType": "regex",
"fileMatch": ["(^|/)\\.github/workflows/deploy\\.yaml$"],
"matchStrings": ["#\\s?renovate: slowsage/mdbook-pagetoc\\s*MDBOOK_PAGETOC_VERSION:\\s*'(?<currentValue>\\d\\.\\d+\\.\\d+)'"],
"depNameTemplate": "mdbook-pagetoc",
"packageNameTemplate": "slowsage/mdbook-pagetoc",
"datasourceTemplate": "github-releases"
},
{
"customType": "regex",
"fileMatch": ["(^|/)\\.github/workflows/deploy\\.yaml$"],
"matchStrings": ["#\\s?renovate: lambdalisue/rs-mdbook-alerts\\s*MDBOOK_ALERTS_VERSION:\\s*'(?<currentValue>\\d\\.\\d+\\.\\d+)'"],
"depNameTemplate": "mdbook-alerts",
"packageNameTemplate": "lambdalisue/rs-mdbook-alerts",
"datasourceTemplate": "github-releases"
}
]
}