Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use a regex manager to look at zarf.yamls and PR for their helm charts #963

Merged
merged 9 commits into from
Nov 4, 2022
13 changes: 12 additions & 1 deletion renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,16 @@
}
],
"platformAutomerge": true,
"platformCommit": true
"platformCommit": true,
"regexManagers": [
{
"fileMatch": ["(^|/)zarf.yaml$"],
"matchStringsStrategy": "recursive",
"matchStrings": [
"charts:(.|\n)*?(^\\s{4}[\\w:]+|\n$|^\\s{2}-)",
"- name: (?<depName>.+)(.|\n)*?url: (?<registryUrl>.+)(.|\n)*?version: (?<currentValue>.+)"
],
"datasourceTemplate": "helm"
}
]
}