From ccf55aeac7fff2b6ce3c8cb53d46855a9d86c4b8 Mon Sep 17 00:00:00 2001 From: mafyuh Date: Sat, 2 Nov 2024 23:29:24 -0400 Subject: [PATCH] Update .github/renovate.json --- .github/renovate.json | 25 +++++++++++++++++++------ 1 file changed, 19 insertions(+), 6 deletions(-) diff --git a/.github/renovate.json b/.github/renovate.json index 025f9f4..4241184 100644 --- a/.github/renovate.json +++ b/.github/renovate.json @@ -1,18 +1,31 @@ { "$schema": "https://docs.renovatebot.com/renovate-schema.json", "extends": [ - "config:recommended" + "config:base" ], "dependencyDashboardTitle": ":robot: Renovate Dashboard", "regexManagers": [ { + "description": "Process Docker YML files", + "fileMatch": [ + "docker/.+\\.y?ml$" + ], + "matchStrings": [ + "version: (?\\S+)" + ], + "datasourceTemplate": "docker", + "currentValueTemplate": "{{{ currentValue }}}" + }, + { + "description": "Process Terraform files", "fileMatch": [ - "ansible/.+\\.ya?ml$", - "docker/.+\\.ya?ml$", - "kubernetes/.+\\.ya?ml$", - "packer/.+\\.hcl$", "terraform/.+\\.tf$" - ] + ], + "matchStrings": [ + "source\\s*=\\s*\"(?[^\"]+):(?!/)\\S+@(?\\S+)\"" + ], + "datasourceTemplate": "terraform", + "currentValueTemplate": "{{{ currentValue }}}" } ] }