1
0
mirror of https://github.com/oauth2-proxy/oauth2-proxy.git synced 2025-06-06 23:46:28 +02:00

chore: Added trailing commas

This commit is contained in:
kvanzuijlen 2024-01-27 10:03:31 +01:00
parent dd5576f2b2
commit 3c06739a8f
No known key found for this signature in database
GPG Key ID: 3BD884D2AE99AD59

View File

@ -13,7 +13,7 @@
"github-actions", "github-actions",
"helmv3", "helmv3",
"npm", "npm",
"regex" "regex",
], ],
packageRules: [ packageRules: [
{ {
@ -22,30 +22,30 @@
"docker-compose", "docker-compose",
"gomod", "gomod",
"helmv3", "helmv3",
"npm" "npm",
], ],
groupName: "{{{manager}}}" groupName: "{{{manager}}}",
} },
], ],
customManagers: [ customManagers: [
{ {
customType: "regex", customType: "regex",
fileMatch: [ fileMatch: [
"^Makefile" "^Makefile",
], ],
matchStrings: [ matchStrings: [
"DOCKER_BUILD_RUNTIME_IMAGE_ALPINE\\s+?\\?= alpine:(?<currentValue>.*)\\s" "DOCKER_BUILD_RUNTIME_IMAGE_ALPINE\\s+?\\?= alpine:(?<currentValue>.*)\\s"
], ],
depNameTemplate: "alpine", depNameTemplate: "alpine",
datasourceTemplate: "docker" datasourceTemplate: "docker",
}, },
{ {
customType: "regex", customType: "regex",
fileMatch: ["(^|/)\\.github/workflows/[^/]+\\.ya?ml$", "(^|/)\\.github/[^/]+\\.sh$"], fileMatch: ["(^|/)\\.github/workflows/[^/]+\\.ya?ml$", "(^|/)\\.github/[^/]+\\.sh$"],
matchStrings: [ matchStrings: [
"# renovate: datasource=(?<datasource>.*?) depName=(?<depName>.*?)( versioning=(?<versioning>.*?))?\\s+?[\\w\\s-]*?version: (?<currentValue>.*)\\s", "# renovate: datasource=(?<datasource>.*?) depName=(?<depName>.*?)( versioning=(?<versioning>.*?))?\\s+?[\\w\\s-]*?version: (?<currentValue>.*)\\s",
"# renovate: datasource=(?<datasource>.*?) depName=(?<depName>.*?)( versioning=(?<versioning>.*?))?\\s+?[\\w\\s]*?_VERSION: (?<currentValue>.*)\\s" "# renovate: datasource=(?<datasource>.*?) depName=(?<depName>.*?)( versioning=(?<versioning>.*?))?\\s+?[\\w\\s]*?_VERSION: (?<currentValue>.*)\\s",
] ],
} },
] ],
} }