-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathrenovate.json
More file actions
38 lines (38 loc) · 931 Bytes
/
renovate.json
File metadata and controls
38 lines (38 loc) · 931 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
26
27
28
29
30
31
32
33
34
35
36
37
38
{
"extends": [
"github>arkedge/renovate-config"
],
"labels": [
"priority::medium",
"tools"
],
"additionalReviewers": [
"sksat"
],
"assignees": [
"sksat"
],
"customManagers": [
{
"customType": "regex",
"managerFilePatterns": [
"/.github/workflows/*/"
],
"matchStrings": [
"datasource=(?<datasource>.*?) depName=(?<depName>.*?)( versioning=(?<versioning>.*?))?\\s.*?_VERSION:\\s(?<currentValue>.*)\\s"
],
"versioningTemplate": "{{#if versioning}}{{versioning}}{{else}}semver{{/if}}"
},
{
"customType": "regex",
"managerFilePatterns": [
"/.*.sh/"
],
"matchStrings": [
"cargo install\\s*(--\\S*\\s*)*(\\s*--root\\s\\S*\\s*)?(?<depName>\\S*?)\\s*(--\\S*\\s*)*(--version\\s*(?<currentValue>\\S*))\\s"
],
"datasourceTemplate": "crate",
"versioningTemplate": "cargo"
}
]
}