From cf18d304eebc6f3e25a9f5e7bf0de8db9ae88a4b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rafael=20Eppl=C3=A9e?= Date: Thu, 22 May 2025 12:02:55 +0200 Subject: [PATCH] chore: Ignore elixir dependency in renovate It's a bit complicated to support the `-otp` postfix right now, so to fix this right now, we'll just disable automatic updates for elixir. --- renovate.json | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/renovate.json b/renovate.json index 316f0a8..f5f875c 100644 --- a/renovate.json +++ b/renovate.json @@ -10,6 +10,11 @@ "groupName": "asdf tool versions", "description": "Keep in mind that Renovate currently does not support updating PostgreSQL via asdf.", "matchFileNames": [".tool-versions"] + }, + { + "matchFileNames": [".tool-versions"], + "matchPackageNames": ["elixir"], + "enabled": false } ] }