fix(ci): ignore elixir updates for .drone.yml as well
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Rafael Epplée 2025-06-12 14:59:49 +02:00
parent b79128f6bf
commit 503aa9e26b
No known key found for this signature in database
GPG key ID: B4EFE6DC59FAE118

View file

@ -17,9 +17,14 @@
"matchDatasources": ["docker"] "matchDatasources": ["docker"]
}, },
{ {
"matchFileNames": [".tool-versions", "Dockerfile"], "description": "Disable elixir updates, as renovate does not work with their <version>-otp-<version> numbering scheme.",
"matchCurrentValue": "**-otp-**", "matchCurrentValue": "**-otp-**",
"enabled": false "enabled": false
},
{
"description": "Disable erlang updates as they need to be coordinated with elixir updates.",
"matchDepNames": "erlang",
"enabled": false
} }
] ]
} }