{ "$schema": "https://docs.renovatebot.com/renovate-schema.json", "extends": [ "config:recommended", ":dependencyDashboard", ":semanticCommits" ], "labels": ["renovate"], "semanticCommits": "enabled", "semanticCommitType": "fix", "semanticCommitScope": "deps", "github-actions": { "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", "managerFilePatterns": ["/\\.html$/"], "matchStrings": [ "datasource=(?\\S+) depName=(?\\S+)( versioning=(?\\S+))?[\\s\\S]*?(?v?\\d+\\.\\d+\\.\\d+[\\w.-]*)" ] }, { "customType": "regex", "description": "Auto-detect versioned jsDelivr / unpkg npm assets in HTML", "managerFilePatterns": ["/\\.html$/"], "matchStrings": [ "https://cdn\\.jsdelivr\\.net/npm/(?@?[^@/]+(?:/[^@/]+)?)@(?\\d[^/\"']+)", "https://unpkg\\.com/(?@?[^@/]+(?:/[^@/]+)?)@(?\\d[^/\"']+)" ], "datasourceTemplate": "npm" } ] }