34 lines
807 B
Django/Jinja
34 lines
807 B
Django/Jinja
{
|
|
"$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 %}
|
|
}
|