diff --git a/renovate.json b/renovate.json index 5e4e043..e07a020 100644 --- a/renovate.json +++ b/renovate.json @@ -10,20 +10,25 @@ "semanticCommitType": "fix", "semanticCommitScope": "deps", "github-actions": { - "fileMatch": ["^\\.gitea/workflows/[^/]+\\.ya?ml$"] + "managerFilePatterns": ["/^\\.gitea/workflows/[^/]+\\.ya?ml$/"] }, "packageRules": [ { "description": "Group nginx base image updates", "matchManagers": ["dockerfile"], "groupName": "docker base image" + }, + { + "description": "Commit every update as fix(deps) so each merged Renovate PR triggers a patch release. config:recommended pulls in :semanticPrefixFixDepsChoreOthers, which forces non-npm updates (Docker, Actions) to chore and would otherwise produce no release.", + "matchPackageNames": ["*"], + "semanticCommitType": "fix" } ], "customManagers": [ { "customType": "regex", "description": "Update HTML dependencies annotated with a renovate comment, e.g. before the versioned URL", - "fileMatch": ["\\.html$"], + "managerFilePatterns": ["/\\.html$/"], "matchStrings": [ "datasource=(?\\S+) depName=(?\\S+)( versioning=(?\\S+))?[\\s\\S]*?(?v?\\d+\\.\\d+\\.\\d+[\\w.-]*)" ] @@ -31,7 +36,7 @@ { "customType": "regex", "description": "Auto-detect versioned jsDelivr / unpkg npm assets in HTML", - "fileMatch": ["\\.html$"], + "managerFilePatterns": ["/\\.html$/"], "matchStrings": [ "https://cdn\\.jsdelivr\\.net/npm/(?@?[^@/]+(?:/[^@/]+)?)@(?\\d[^/\"']+)", "https://unpkg\\.com/(?@?[^@/]+(?:/[^@/]+)?)@(?\\d[^/\"']+)"