Skip to content

Commit 4cc2b94

Browse files
authored
fix: fix regex for auth and opamp (#1444)
1 parent 7b2fb7d commit 4cc2b94

File tree

1 file changed

+10
-6
lines changed

1 file changed

+10
-6
lines changed

.github/renovate.json5

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -46,23 +46,27 @@
4646
],
4747
},
4848
{
49-
customType: 'regex',
50-
"managerFilePatterns": ["^Cargo\\.toml$"],
49+
"customType": "regex",
50+
"managerFilePatterns": [
51+
"**/Cargo.toml"
52+
],
5153
"matchStrings": [
5254
"nr-auth = { git = \"https://github\\.com/newrelic/newrelic-auth-rs\\.git\", tag = \"(?<currentValue>\\d+\\.\\d+\\.\\d+)\" }"
5355
],
54-
"depNameTemplate": "newrelic-auth-rs",
5556
"datasourceTemplate": "github-tags",
57+
"depNameTemplate": "newrelic-auth-rs",
5658
"lookupNameTemplate": "newrelic/newrelic-auth-rs"
5759
},
5860
{
59-
customType: 'regex',
60-
"managerFilePatterns": ["^Cargo\\.toml$"],
61+
"customType": "regex",
62+
"managerFilePatterns": [
63+
"**/Cargo.toml"
64+
],
6165
"matchStrings": [
6266
"opamp-client = { git = \"https://github\\.com/newrelic/newrelic-opamp-rs\\.git\", tag = \"(?<currentValue>\\d+\\.\\d+\\.\\d+)\" }"
6367
],
64-
"depNameTemplate": "newrelic-opamp-rs",
6568
"datasourceTemplate": "github-tags",
69+
"depNameTemplate": "newrelic-opamp-rs",
6670
"lookupNameTemplate": "newrelic/newrelic-opamp-rs"
6771
}
6872
],

0 commit comments

Comments
 (0)