25 lines
494 B
Plaintext
25 lines
494 B
Plaintext
{
|
|
$schema: "https://docs.renovatebot.com/renovate-schema.json",
|
|
semanticCommits: "auto",
|
|
enabledManagers: [
|
|
"dockerfile",
|
|
"gomod",
|
|
"github-actions",
|
|
"npm",
|
|
"regex",
|
|
],
|
|
customManagers: [
|
|
{
|
|
customType: "regex",
|
|
fileMatch: [
|
|
"^Makefile"
|
|
],
|
|
matchStrings: [
|
|
"DOCKER_BUILD_RUNTIME_IMAGE_ALPINE\\s+?\\?= alpine:(?<currentValue>.*)\\s"
|
|
],
|
|
depNameTemplate: "alpine",
|
|
datasourceTemplate: "docker",
|
|
},
|
|
],
|
|
}
|