From fd82033666d8dc32d0643facffa1e286246c4dec Mon Sep 17 00:00:00 2001 From: Florian Wathling Date: Sat, 9 May 2026 17:41:38 +0200 Subject: [PATCH 1/2] 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": { From 07337108bc24381b20f2c8ef84e23c587a24a7cb Mon Sep 17 00:00:00 2001 From: Forge Bot Date: Sat, 9 May 2026 15:42:04 +0000 Subject: [PATCH 2/2] chore(config): migrate config renovate.json --- renovate.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/renovate.json b/renovate.json index 3894349..06a8912 100644 --- a/renovate.json +++ b/renovate.json @@ -46,10 +46,10 @@ }, { "description": "TypeScript type definitions stay grouped with each other", - "matchPackagePrefixes": [ - "@types/" - ], - "groupName": "type definitions" + "groupName": "type definitions", + "matchPackageNames": [ + "@types/{/,}**" + ] }, { "description": "Dev dependencies in their own group",