diff --git a/renovate.json b/renovate.json index a55a455..765dc82 100644 --- a/renovate.json +++ b/renovate.json @@ -1,27 +1,43 @@ { "$schema": "https://docs.renovatebot.com/renovate-schema.json", "extends": [ - "config:base" + "config:recommended" + ], + "platform": "gitea", + "packageRules": [ + { + "matchManagers": [ + "pip_requirements" + ], + "matchFileNames": [ + "pyproject.toml", + "requirements.txt", + "requirements/*.txt" + ] + }, + { + "matchManagers": [ + "dockerfile" + ], + "matchFileNames": [ + "Dockerfile", + "**/*.dockerfile", + "**/Dockerfile.*" + ] + }, + { + "matchManagers": [ + "github-actions" + ], + "matchFileNames": [ + ".forgejo/workflows/*.yml", + ".forgejo/workflows/*.yaml", + ".github/workflows/*.yml", + ".github/workflows/*.yaml" + ] + } ], - "pip_requirements": { - "fileMatch": [ - "^pyproject\\.toml$" - ] - }, - "dockerfile": { - "fileMatch": [ - "^Dockerfile$" - ] - }, - "github-actions": { - "fileMatch": [ - "^\\.forgejo\\/workflows\\/.*\\.yml$" - ] - }, "labels": [ "dependencies" - ], - "lockFileMaintenance": { - "enabled": true - } + ] } \ No newline at end of file