Use regex to capture pocketbase version
All checks were successful
Deploy / build (push) Successful in 27s

This commit is contained in:
2024-05-02 15:49:27 +12:00
parent ba92732279
commit f103fbdf05
2 changed files with 17 additions and 4 deletions

View File

@@ -2,5 +2,16 @@
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"local>hads/renovate-config"
],
"regexManagers": [
{
"fileMatch": [
"(^|/)Dockerfile$",
"(^|/)Dockerfile\\.[^/]*$"
],
"matchStrings": [
"#\\srenovate:\\sdatasource=(?<datasource>.*?) depName=(?<depName>.*?)( versioning=(?<versioning>.*?))?( extractVersion=(?<extractVersion>.*?))?\\s(ENV|ARG) .*?_VERSION=(?<currentValue>.*)\\s"
]
}
]
}
}