Skip to content

Commit

Permalink
chore(ci): add renovate config for .tools_versions.yaml (#278)
Browse files Browse the repository at this point in the history
  • Loading branch information
pmalek authored May 20, 2024
1 parent 32163f3 commit d66ac4a
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,21 @@
"description": "Match dependencies in config/samples/.*.yaml that are properly annotated with `# renovate: datasource={} versioning={}.`",
"customType": "regex",
"fileMatch": [
"^config/samples/.*.yaml$"
"^config/samples/.*\\.yaml$"
],
"matchStrings": [
"#\\s+renovate:\\s+datasource=(?<datasource>.*)\\s+versioning=(?<versioning>.*?)\\n.+image:\\s+(?<depName>.+?):(?<currentValue>.+)"
]
},
{
"description": "Match dependencies in .tools_verisons.yaml that are properly annotated with `# renovate: datasource={} depName={}.`",
"customType": "regex",
"fileMatch": [
"\\.tools_versions\\.yaml$"
],
"matchStrings": [
"# renovate: datasource=(?<datasource>.*?) depName=(?<depName>.*?)\\n.+\"(?<currentValue>.*?)\""
]
}
]
}

0 comments on commit d66ac4a

Please sign in to comment.