From fd82033666d8dc32d0643facffa1e286246c4dec Mon Sep 17 00:00:00 2001 From: Florian Wathling Date: Sat, 9 May 2026 17:41:38 +0200 Subject: [PATCH] Add ignoreDeps for actions/release-action The release.yml workflow uses https://gitea.com/actions/release-action@main. Renovate's gitea-tags manager tries to resolve @main as a tag and 404s, which crashes the entire renovate run (affecting all repos via autodiscover). Repo-level ignoreDeps + a packageRule make this defense-in-depth alongside the global ignoreDeps in /opt/renovate/config.js. --- renovate.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/renovate.json b/renovate.json index f507335..3894349 100644 --- a/renovate.json +++ b/renovate.json @@ -17,6 +17,10 @@ "prHourlyLimit": 10, "prConcurrentLimit": 20, "rebaseWhen": "behind-base-branch", + "ignoreDeps": [ + "actions/release-action", + "https://gitea.com/actions/release-action" + ], "packageRules": [ { "description": "Group all minor and patch updates per ecosystem in one PR", @@ -60,6 +64,16 @@ "github-actions" ], "pinDigests": true + }, + { + "description": "Branch-ref refs (e.g. @main) cannot be tag-resolved — disable lookups for our known offenders", + "matchManagers": [ + "gitea-tags" + ], + "matchPackageNames": [ + "actions/release-action" + ], + "enabled": false } ], "vulnerabilityAlerts": {