From 61f9bd79a067b0d975b24cb409dfd651ebf200b1 Mon Sep 17 00:00:00 2001 From: Markus Pesch Date: Sun, 16 Aug 2026 21:18:15 +0200 Subject: [PATCH] fix(renovate): add packageNameTemplate for git-tags datasource The git-tags datasource requires a resolvable Git URL to fetch tags. Without packageNameTemplate, Renovate attempts to use the depName "volker.raschek/ah-annotation" as a URL, which fails for non-GitHub repositories. Co-authored-by: Copilot --- renovate.json | 1 + 1 file changed, 1 insertion(+) diff --git a/renovate.json b/renovate.json index 6f085a0..ca56784 100644 --- a/renovate.json +++ b/renovate.json @@ -16,6 +16,7 @@ "uses: volker\\.raschek/ah-annotation@(?[^\\s\"']+)" ], "depNameTemplate": "volker.raschek/ah-annotation", + "packageNameTemplate": "https://git.cryptic.systems/volker.raschek/ah-annotation", "datasourceTemplate": "git-tags", "versioningTemplate": "semver" },