25 lines
851 B
JSON
25 lines
851 B
JSON
{
|
|
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
|
"extends": [
|
|
"local>RenovateBot/renovate-config",
|
|
":semanticCommitTypeAll(chore)"
|
|
],
|
|
"ignoreDeps": ["postgres"],
|
|
"automerge": false,
|
|
"packageRules": [
|
|
{
|
|
"description": "Update Docker images defined in YAML files",
|
|
"matchFilePatterns": [".*\\.yml$"],
|
|
"customManagers": [
|
|
{
|
|
"manager": "regex",
|
|
"datasource": "docker",
|
|
"extractVersion": "(?:alpine_latest_image|ubuntu_latest_image|debian_latest_image|image):\\s*\"(?<currentValue>[^\"]+)\"",
|
|
"depNameTemplate": "{{#if (match \"alpine_latest_image\")}}alpine{{else if (match \"ubuntu_latest_image\")}}ubuntu{{else if (match \"debian_latest_image\")}}debian{{else}}docker-image{{/if}}",
|
|
"versioning": "docker"
|
|
}
|
|
]
|
|
}
|
|
]
|
|
}
|