initial commit

This commit is contained in:
root
2025-10-11 17:03:02 +02:00
commit 08dbb6210e
51 changed files with 3420 additions and 0 deletions

View File

@@ -0,0 +1,33 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"local>KD_ESTA/esta-renovate-preset"
],
"branchPrefix": "renovate/",
"dependencyDashboard": false,
"ignoreDeps": ["python"],
"packageRules": [
{
"groupName": "all non-major dependencies",
"groupSlug": "all-minor-patch",
"matchPackagePatterns": [
"*"
],
"matchUpdateTypes": [
"minor",
"patch"
]
}
],
{%- if docker_repository %}
"customManagers": [
{
"customType": "regex",
"fileMatch": ["^Dockerfile$"],
"matchStrings": ["POETRY_VERSION=\"(?<currentValue>.+)\""],
"depNameTemplate": "poetry",
"datasourceTemplate": "pypi"
}
]
{%- endif %}
}