mitgliederverwaltung/renovate.json
Rafael Epplée cf18d304ee
Some checks reported errors
continuous-integration/drone/push Build was killed
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.
2025-05-22 12:10:18 +02:00

20 lines
540 B
JSON

{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["config:recommended"],
"packageRules": [
{
"groupName": "Mix dependencies",
"matchCategories": "elixir"
},
{
"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
}
]
}