Skip to content

Commit

Permalink
chore(ci): fix renovate regex (#311)
Browse files Browse the repository at this point in the history
  • Loading branch information
pmalek authored Jun 3, 2024
1 parent 1b0af45 commit 2fc019e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,15 +35,15 @@
]
},
{
"description": "Match versions in pkg/consts/dataplane.go that are properly annotated with `# renovate: datasource={} versioning={}.`",
"description": "Match versions in selected *.go files that are properly annotated with `// renovate: datasource={} depName={}.`",
"customType": "regex",
"datasourceTemplate": "docker",
"fileMatch": [
"^pkg/consts/dataplane\\.go$",
"^internal/versions/controlplane\\.go$"
],
"matchStrings": [
".+\\s+=\\s+\"(?<currentValue>.+)\"\\s+//\\s+renovate:\\s+datasource=(?<datasource>.*)\\s+(?<depName>.+?)"
".+\\s+=\\s+\"(?<currentValue>.+)\"\\s+//\\s+renovate:\\s+datasource=(?<datasource>.*)\\s+depName=(?<depName>.+?)"
]
}
]
Expand Down

0 comments on commit 2fc019e

Please sign in to comment.