-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathrenovate.json
80 lines (80 loc) · 1.68 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"dependencyDashboard": true,
"rangeStrategy": "bump",
"semanticCommits": "enabled",
"semanticCommitType": "fix",
"schedule": [
"before 6:00am on Friday"
],
"prConcurrentLimit": 0,
"versioning": "cargo",
"packageRules": [
{
"matchPackageNames": [
"!jerusdp/ci-rust"
]
},
{
"groupName": "futures packages",
"matchPackageNames": [
"/^futures[-_]?/"
]
},
{
"groupName": "serde packages",
"matchPackageNames": [
"/^serde[-_]?/"
]
},
{
"groupName": "tokio packages",
"matchPackageNames": [
"/^tokio[-_]?/"
]
},
{
"groupName": "tracing packages",
"matchPackageNames": [
"/^tracing[-_]?/",
"!tracing-opentelemetry"
]
},
{
"groupName": "liquid packages",
"matchPackageNames": [
"/^liquid[-_]?/",
"/^kstring$/"
]
},
{
"automerge": true,
"matchPackageNames": [
"/github/codeql-action/",
"/ossf/scorecard-action/",
"/actions/checkout/"
]
},
{
"sourceUrl": "https://github.com/jerus-org/circleci-toolkit",
"enabled": true,
"matchPackageNames": [
"/jerus-org/circleci-toolkit/"
]
}
],
"customManagers": [
{
"customType": "regex",
"fileMatch": [
"^rust-toolchain\\.toml?$"
],
"matchStrings": [
"channel\\s*=\\s*\"(?<currentValue>\\d+\\.\\d+\\.\\d+)\""
],
"depNameTemplate": "rust",
"packageNameTemplate": "rust-lang/rust",
"datasourceTemplate": "github-releases"
}
]
}