1
0
mirror of https://github.com/oauth2-proxy/oauth2-proxy.git synced 2025-08-08 22:46:33 +02:00

feat: Added renovate configuration (#2377)

This commit is contained in:
Koen van Zuijlen
2024-01-20 20:51:34 +01:00
committed by GitHub
parent 0b24f45965
commit 184c5820af
3 changed files with 28 additions and 5 deletions

24
.github/renovate.json5 vendored Normal file
View File

@ -0,0 +1,24 @@
{
$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",
},
],
}