From 99abe44f59309b67ae8530e540a55973c1fc140e Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 19 Aug 2024 10:45:34 +0200 Subject: [PATCH] Configure Renovate (#37) * Add renovate.json --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Stephane de Labrusse --- renovate.json | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 renovate.json diff --git a/renovate.json b/renovate.json new file mode 100644 index 0000000..e03882e --- /dev/null +++ b/renovate.json @@ -0,0 +1,27 @@ +{ + "$schema": "https://docs.renovatebot.com/renovate-schema.json", + "extends": ["config:base"], + "ignorePaths": ["**/ui/**"], + "regexManagers": [ + { + "fileMatch": ["build-images.sh"], + "matchStrings": [ + "docker\\.io/roundcube/roundcubemail:(?[-0-9\\.a-z]+)" + ], + "datasourceTemplate": "docker", + "depNameTemplate": "roundcube/roundcubemail" + }, + { + "fileMatch": ["build-images.sh"], + "matchStrings": ["docker\\.io/mariadb:(?[^\\s]+)"], + "depNameTemplate": "mariadb", + "datasourceTemplate": "docker" + } + ], + "packageRules": [ + { + "matchPackageNames": ["mariadb"], + "allowedVersions": "<= 10.11" + } + ] +}