Skip to content

Commit 3480bf7

Browse files
committed
chore: escape dots in fileMatch regex patterns
1 parent c7f218f commit 3480bf7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/renovate.json5

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
{
2020
// CLI version in example_matrix.yml (uses: ./. with version: "v6.8.0")
2121
customType: "regex",
22-
fileMatch: ["^.github/workflows/example_matrix\\.yml$"],
22+
fileMatch: ["^\\.github/workflows/example_matrix\\.yml$"],
2323
matchStrings: [
2424
"version\\:\\s+[\"'](?<currentValue>[^\"']+)[\"']",
2525
],
@@ -31,7 +31,7 @@
3131
{
3232
// CLI version without v prefix in example.yml matrix (first value: "6.8.0")
3333
customType: "regex",
34-
fileMatch: ["^.github/workflows/example\\.yml$"],
34+
fileMatch: ["^\\.github/workflows/example\\.yml$"],
3535
matchStrings: [
3636
"cloudquery-version\\:\\s+\\[\"(?<currentValue>[^\"]+)\"",
3737
],
@@ -43,7 +43,7 @@
4343
{
4444
// CLI version with v prefix in example.yml matrix (second value: "v6.8.0")
4545
customType: "regex",
46-
fileMatch: ["^.github/workflows/example\\.yml$"],
46+
fileMatch: ["^\\.github/workflows/example\\.yml$"],
4747
matchStrings: [
4848
"cloudquery-version\\:\\s+\\[\"[^\"]+\",\\s*\"(?<currentValue>[^\"]+)\"",
4949
],

0 commit comments

Comments
 (0)