From 489958af1805cb05796be8b7db038a481c006b77 Mon Sep 17 00:00:00 2001 From: Micha Date: Fri, 29 May 2026 20:13:54 +0200 Subject: [PATCH] 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 --- renovate.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/renovate.json b/renovate.json index 66a4705..6aaebfd 100644 --- a/renovate.json +++ b/renovate.json @@ -11,8 +11,8 @@ "gitAuthor": "Renovate Bot ", "onboarding": false, "requireConfig": "optional", - "autodiscover": true, - "autodiscoverFilter": ["Micha/*"], + "autodiscover": false, + "repositories": ["Micha/homelab-infra"], "dependencyDashboardTitle": "Renovate Dependency Dashboard", "prHourlyLimit": 0, "prConcurrentLimit": 5,