Files
homelab-infra/renovate.json
T
Micha 489958af18 Use explicit repository list instead of autodiscover
Gitea's /api/v1/user/repos (which Renovate calls during autodiscover)
returns repos where the user is owner or org member, but NOT
collaborator-only repos. Our renovate service account has write
collaborator access on Micha/homelab-infra but no own/org repos,
so autodiscover yielded an empty list.

Switching to explicit "repositories": ["Micha/homelab-infra"] is
the pragmatic fix for a homelab with one repo to scan; avoids
having to create an org just for one service account.

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
2026-05-29 20:13:54 +02:00

80 lines
2.3 KiB
JSON

{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended",
":dependencyDashboard",
":semanticCommits"
],
"platform": "gitea",
"endpoint": "https://git.kaleschke.info/api/v1",
"username": "renovate",
"gitAuthor": "Renovate Bot <renovate@kaleschke.info>",
"onboarding": false,
"requireConfig": "optional",
"autodiscover": false,
"repositories": ["Micha/homelab-infra"],
"dependencyDashboardTitle": "Renovate Dependency Dashboard",
"prHourlyLimit": 0,
"prConcurrentLimit": 5,
"branchConcurrentLimit": 10,
"labels": ["dependencies"],
"rangeStrategy": "pin",
"lockFileMaintenance": {
"enabled": false
},
"docker-compose": {
"managerFilePatterns": [
"/(^|/)docker-compose([^/]*)\\.ya?ml$/",
"/(^|/)compose([^/]*)\\.ya?ml$/"
]
},
"dockerfile": {
"enabled": true
},
"packageRules": [
{
"description": "Major-Updates getrennt sammeln, manuell mergen",
"matchUpdateTypes": ["major"],
"groupName": "major-updates",
"groupSlug": "major-updates",
"automerge": false,
"labels": ["dependencies", "major"]
},
{
"description": "Patch- und Minor-Digest-Updates fuer stabile Images zusammenfassen",
"matchUpdateTypes": ["minor", "patch", "digest"],
"matchManagers": ["docker-compose", "dockerfile"],
"groupName": "minor-and-patch-updates",
"groupSlug": "minor-patch-updates",
"automerge": false,
"labels": ["dependencies", "minor-patch"]
},
{
"description": "Stateful Tier-1 (Postgres, Mongo, Redis): keine Auto-Group, einzelne PRs, kein Auto-Merge",
"matchPackageNames": [
"postgres",
"mongo",
"redis",
"tensorchord/pgvecto-rs"
],
"groupName": null,
"automerge": false,
"labels": ["dependencies", "stateful-tier1"]
},
{
"description": "Komodo Major-Tag (release :2 mit Digest-Pin) wird nicht von Renovate auf :3 hochgesetzt",
"matchPackageNames": [
"ghcr.io/moghtech/komodo-core",
"ghcr.io/moghtech/komodo-periphery"
],
"matchUpdateTypes": ["major"],
"enabled": false
}
],
"ignorePaths": [
"**/_archive/**",
"ops/grafana-influxdb/**",
"ops/loki/**"
]
}