mirror of
https://github.com/thegeeklab/renovate-presets.git
synced 2024-11-21 23:10:40 +00:00
fix regex syntax
This commit is contained in:
parent
8d1f4693f8
commit
c67d228ae2
@ -3,14 +3,14 @@
|
||||
"description": ["Preset for use with kubernetes repositories"],
|
||||
"extends": ["github>thegeeklab/renovate-presets:base"],
|
||||
"flux": {
|
||||
"fileMatch": ["flux/.+\\.ya?ml$"]
|
||||
"fileMatch": ["^flux/.+\\.ya?ml$"]
|
||||
},
|
||||
"helm-values": {
|
||||
"fileMatch": ["flux/(.+/)patch(HelmRelease)\\.ya?ml$"],
|
||||
"fileMatch": ["^flux/(.+/)patch(HelmRelease)\\.ya?ml$"],
|
||||
"pinDigests": true
|
||||
},
|
||||
"kubernetes": {
|
||||
"fileMatch": ["flux/(.+/)patch(Deployment|Cluster)\\.ya?ml$"]
|
||||
"fileMatch": ["^flux/(.+/)patch(Deployment|Cluster)\\.ya?ml$"]
|
||||
},
|
||||
"packageRules": [
|
||||
{
|
||||
@ -36,9 +36,9 @@
|
||||
],
|
||||
"regexManagers": [
|
||||
{
|
||||
"fileMatch": ["flux/(.+/)patch(Cluster)\\.ya?ml$"],
|
||||
"fileMatch": ["^flux/(.+/)patch(Cluster)\\.ya?ml$"],
|
||||
"matchStrings": [
|
||||
"^\\s+(imageName):\\s+\"?'?(?<depName>[^:\\s]+):(?<currentValue>[^\"'@]+?)(@(?<currentDigest>sha256:[a-f0-9]+))?\"?'?\\s"
|
||||
"\\s+(imageName):\\s+\"?'?(?<depName>[^:\\s]+):(?<currentValue>[^\"'@]+?)(@(?<currentDigest>sha256:[a-f0-9]+))?\"?'?\\s"
|
||||
],
|
||||
"datasourceTemplate": "docker"
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user