iac/.github/renovate.json

22 lines
676 B
JSON
Raw Permalink Normal View History

2024-07-12 23:57:29 -04:00
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
2024-11-02 23:29:24 -04:00
"config:base"
2024-07-12 23:57:29 -04:00
],
2024-11-02 23:20:46 -04:00
"dependencyDashboardTitle": ":robot: Renovate Dashboard",
"regexManagers": [
{
2024-11-02 23:34:28 -04:00
"description": "Process files",
2024-11-02 23:29:24 -04:00
"fileMatch": [
2024-11-02 23:34:28 -04:00
"docker/.+\\.y?ml$",
"terraform/.+\\tf.$"
2024-11-02 23:29:24 -04:00
],
"matchStrings": [
2024-11-02 23:34:28 -04:00
"datasource=(?<datasource>\\S+) depName=(?<depName>\\S+)( versioning=(?<versioning>\\S+))?\n.*?\"(?<currentValue>.*)\"\n"
2024-11-02 23:29:24 -04:00
],
2024-11-02 23:34:28 -04:00
"datasourceTemplate": "{{#if datasource}}{{{datasource}}}{{else}}github-releases{{/if}}",
"versioningTemplate": "{{#if versioning}}{{{versioning}}}{{else}}semver{{/if}}"
2024-11-02 23:20:46 -04:00
}
]
}