Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@
"customManagers": [
{
"customType": "regex",
"fileMatch": [
"(^|/)startshowcase\\.sh$"
"managerFilePatterns": [
"/(^|/)startshowcase\\.sh$/"

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

high

The regular expression in managerFilePatterns is enclosed in / delimiters, but it contains an unescaped forward slash / within the group (^|/). This will cause a regex parsing error in Renovate because the unescaped slash is interpreted as the end of the regex pattern. Escaping the forward slash as \\/ resolves this issue.

Suggested change
"/(^|/)startshowcase\\.sh$/"
"/(^|\\/)startshowcase\\.sh$/"

],
"matchStrings": [
"SHOWCASE_VERSION=\"(?<currentValue>.*?)\""
Expand Down
Loading