We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7a65c82 commit 87b6e0eCopy full SHA for 87b6e0e
.github/renovate.json5
@@ -8,7 +8,33 @@
8
ignorePaths: [
9
"**/tests/**",
10
],
11
+ regexManagers: [
12
+ {
13
+ customType: 'regex',
14
+ fileMatch: [
15
+ '^Cargo.toml$',
16
+ ],
17
+ matchStrings: [
18
+ 'rust-version.*?(?<currentValue>\\d+\\.\\d+(\\.\\d+)?)',
19
20
+ depNameTemplate: 'latest-msrv',
21
+ packageNameTemplate: 'rust-lang/rust',
22
+ datasourceTemplate: 'github-releases',
23
+ },
24
25
packageRules: [
26
27
+ commitMessageTopic: 'Latest MSRV',
28
+ matchManagers: [
29
+ 'regex',
30
31
+ matchPackageNames: [
32
+ 'latest-msrv',
33
34
+ schedule: [
35
+ '* * * * *',
36
37
38
// Goals:
39
// - Rollup safe upgrades to reduce CI runner load
40
// - Have lockfile and manifest in-sync (implicit rules)
0 commit comments