File tree 3 files changed +35
-9
lines changed
3 files changed +35
-9
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change
1
+ {
2
+ "semanticCommits" : "enabled" ,
3
+ "configMigration" : true ,
4
+ "packageRules" : [
5
+ // Goals:
6
+ // - Keep version reqs low, ignoring compatible normal/build dependencies
7
+ // - Take advantage of latest dev-dependencies
8
+ // - Help keep versions down by always using latest breaking change
9
+ // - Rollup safe upgrades to reduce CI runner load
10
+ // - Have lockfile and manifest in-sync
11
+ {
12
+ "matchManagers" : [ "cargo" ] ,
13
+ "matchDepTypes" : [ "dev-dependencies" ] ,
14
+ "matchUpdateTypes" : [ "patch" ] ,
15
+ "automerge" : true ,
16
+ "groupName" : "dev" ,
17
+ } ,
18
+ {
19
+ "matchManagers" : [ "cargo" ] ,
20
+ "matchUpdateTypes" : [ "major" ] ,
21
+ } ,
22
+ {
23
+ "matchManagers" : [ "cargo" ] ,
24
+ "matchUpdateTypes" : [ "minor" ] ,
25
+ "enabled" : false ,
26
+ } ,
27
+ {
28
+ "matchManagers" : [ "cargo" ] ,
29
+ "matchDepTypes" : [ "build-dependencies" , "dependencies" ] ,
30
+ "matchUpdateTypes" : [ "patch" ] ,
31
+ "enabled" : false ,
32
+ } ,
33
+ ] ,
34
+ }
Original file line number Diff line number Diff line change 1
1
style =" conventional"
2
- ignore_author_re =" dependabot"
2
+ ignore_author_re =" ( dependabot|renovate) "
3
3
merge_commit = false
You can’t perform that action at this time.
0 commit comments