-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrenovate.json
80 lines (80 loc) · 1.64 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",
"versioning": "cargo",
"schedule": [
"before 6am on Friday"
],
"packageRules": [
{
"excludePackageNames": [
"jerusdp/ci-rust"
]
},
{
"packagePatterns": [
"^futures[-_]?"
],
"groupName": "futures packages"
},
{
"packagePatterns": [
"^serde[-_]?"
],
"groupName": "serde packages"
},
{
"packagePatterns": [
"^tokio[-_]?"
],
"groupName": "tokio packages"
},
{
"packagePatterns": [
"^tracing[-_]?"
],
"excludePackageNames": [
"tracing-opentelemetry"
],
"groupName": "tracing packages"
},
{
"packagePatterns": [
"^liquid[-_]?",
"^kstring$"
],
"groupName": "liquid packages"
},
{
"matchPackagePatterns": [
"github/codeql-action",
"ossf/scorecard-action",
"actions/checkout"
],
"automerge": true
},
{
"matchPackagePatterns": [
"jerus-org/circleci-toolkit"
],
"sourceUrl": "https://github.com/jerus-org/circleci-toolkit",
"enabled": true
}
],
"regexManagers": [
{
"fileMatch": [
"^rust-toolchain\\.toml?$"
],
"matchStrings": [
"channel\\s*=\\s*\"(?<currentValue>\\d+\\.\\d+\\.\\d+)\""
],
"depNameTemplate": "rust",
"lookupNameTemplate": "rust-lang/rust",
"datasourceTemplate": "github-releases"
}
]
}