File tree 1 file changed +8
-14
lines changed
1 file changed +8
-14
lines changed Original file line number Diff line number Diff line change 9
9
customManagers : [
10
10
{
11
11
customType : 'regex' ,
12
- fileMatch : [
13
- '^rust-toolchain\\.toml$' ,
14
- 'Cargo.toml$' ,
15
- 'clippy.toml$' ,
16
- '\\.clippy.toml$' ,
17
- '^\\.github/workflows/ci.yml$' ,
18
- '^\\.github/workflows/rust-next.yml$' ,
12
+ managerFilePatterns : [
13
+ '/ ^rust-toolchain\\.toml$/ ' ,
14
+ '/ Cargo.toml$/ ' ,
15
+ '/ clippy.toml$/ ' ,
16
+ '/ \\.clippy.toml$/ ' ,
17
+ '/ ^\\.github/workflows/ci.yml$/ ' ,
18
+ '/ ^\\.github/workflows/rust-next.yml$/ ' ,
19
19
] ,
20
20
matchStrings : [
21
21
'STABLE.*?(?<currentValue>\\d+\\.\\d+(\\.\\d+)?)' ,
35
35
matchDepNames : [
36
36
'STABLE' ,
37
37
] ,
38
- extractVersion : '^(?<version>\\d+\\.\\d+)' , // Drop the patch version
38
+ extractVersion : '^(?<version>\\d+\\.\\d+)' ,
39
39
schedule : [
40
40
'* * * * *' ,
41
41
] ,
42
42
automerge : true ,
43
43
} ,
44
- // Goals:
45
- // - Keep version reqs low, ignoring compatible normal/build dependencies
46
- // - Take advantage of latest dev-dependencies
47
- // - Rollup safe upgrades to reduce CI runner load
48
- // - Help keep number of versions down by always using latest breaking change
49
- // - Have lockfile and manifest in-sync
50
44
{
51
45
matchManagers : [
52
46
'cargo' ,
You can’t perform that action at this time.
0 commit comments