[skip ci] adjust regex patterns

This commit is contained in:
Robert Kaussow 2020-10-23 09:59:13 +02:00
parent 95a5d89e50
commit f0b2221438
Signed by: xoxys
GPG Key ID: 65362AE74AF98B61
1 changed files with 3 additions and 3 deletions

View File

@ -6,20 +6,20 @@
{ {
"fileMatch": ["^Dockerfile$"], "fileMatch": ["^Dockerfile$"],
"matchStrings": [ "matchStrings": [
"datasource=(?<datasource>.*?) depName=(?<depName>.*?)( versioning=(?<versioning>.*?))?\\sENV .*?_VERSION=\"\\${.*:-(?<currentValue>.*)}\"\\s" "# renovate: datasource=(?<datasource>\\S+) depName=(?<depName>\\S+)( versioning=(?<versioning>.*?))?\\nENV .*?_VERSION=\"\\${.*:-(?<currentValue>.*)}\"\\s"
] ]
}, },
{ {
"fileMatch": ["^Makefile$"], "fileMatch": ["^Makefile$"],
"matchStrings": [ "matchStrings": [
"datasource=(?<datasource>.*?) depName=(?<depName>.*?)( versioning=(?<versioning>.*?))?\\sexport .*?_VERSION \\?= (?<currentValue>.*)\\s" "# renovate: datasource=(?<datasource>\\S+) depName=(?<depName>\\S+)( versioning=(?<versioning>.*?))?\\nexport .*?_VERSION \\?= (?<currentValue>.*)\\s"
] ]
} }
], ],
"packageRules": [ "packageRules": [
{ {
"datasources": ["github-releases"], "datasources": ["github-releases"],
"groupName": "bitwarden_rs packages", "groupName": "Bitwarden RS packages",
"packagePatterns": ["^dani-garcia"] "packagePatterns": ["^dani-garcia"]
} }
] ]