From 503aa9e26b17eb983cdedd19aec8fb019664e35c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rafael=20Eppl=C3=A9e?= Date: Thu, 12 Jun 2025 14:59:49 +0200 Subject: [PATCH] fix(ci): ignore elixir updates for .drone.yml as well --- renovate.json | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/renovate.json b/renovate.json index 7e12828..d1281a3 100644 --- a/renovate.json +++ b/renovate.json @@ -17,9 +17,14 @@ "matchDatasources": ["docker"] }, { - "matchFileNames": [".tool-versions", "Dockerfile"], + "description": "Disable elixir updates, as renovate does not work with their -otp- numbering scheme.", "matchCurrentValue": "**-otp-**", "enabled": false + }, + { + "description": "Disable erlang updates as they need to be coordinated with elixir updates.", + "matchDepNames": "erlang", + "enabled": false } ] }