-
Notifications
You must be signed in to change notification settings - Fork 20
/
renovate.json
45 lines (45 loc) · 1.11 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
{
"extends": ["config:base"],
"semanticCommits": "enabled",
"semanticCommitType": "chore",
"semanticCommitScope": "deps",
"platformAutomerge": true,
"packageRules": [
{
"matchDepNames": ["redb1"],
"enabled": false
},
{
"description": "Automerge non-major updates",
"matchUpdateTypes": ["minor", "patch"],
"automerge": true
},
{
"matchPackagePatterns": ["thiserror", "chrono", "tokio", "serde", "syn", "quote", "proc-macro2", "include_dir", "semver"],
"matchUpdateTypes": ["patch"],
"enabled": false
},
{
"matchPackagePatterns": ["*"],
"rangeStrategy": "bump"
},
{
"description": "Automerge actions",
"matchDepTypes": ["action"],
"matchUpdateTypes": ["major", "minor", "patch"],
"automerge": true
}
],
"regexManagers": [
{
"fileMatch": ["^README\\.md$"],
"matchStrings": [
"\"native_model\" = \"(?<currentValue>.*?)\""
],
"depNameTemplate": "native_model",
"datasourceTemplate": "crate",
"versioningTemplate": "semver"
}
],
"enabled": true
}