Adjust renovate bot schedule and enable vulnerability updates (#2977)

This commit is contained in:
Hugh Nimmo-Smith
2025-01-29 16:27:21 +00:00
committed by GitHub
parent 31e59c1da1
commit 7ba7ddcdc5

View File

@@ -1,18 +1,22 @@
{ {
"$schema": "https://docs.renovatebot.com/renovate-schema.json", "$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["config:recommended"], "extends": [
"config:recommended",
"schedule:monthly",
":enableVulnerabilityAlertsWithLabel(security)"
],
"addLabels": ["dependencies"],
"minimumReleaseAge": "5 days",
"packageRules": [ "packageRules": [
{ {
"groupName": "all non-major dependencies", "groupName": "all non-major dependencies",
"groupSlug": "all-minor-patch", "groupSlug": "all-minor-patch",
"matchUpdateTypes": ["minor", "patch"], "matchUpdateTypes": ["minor", "patch"]
"extends": ["schedule:weekly"]
}, },
{ {
"groupName": "GitHub Actions", "groupName": "GitHub Actions",
"matchDepTypes": ["action"], "matchDepTypes": ["action"],
"pinDigests": true, "pinDigests": true
"extends": ["schedule:monthly"]
}, },
{ {
"description": "Disable Renovate for packages we want to monitor ourselves", "description": "Disable Renovate for packages we want to monitor ourselves",
@@ -22,28 +26,35 @@
}, },
{ {
"groupName": "matrix-widget-api", "groupName": "matrix-widget-api",
"matchDepNames": ["matrix-widget-api"] "matchDepNames": ["matrix-widget-api"],
"schedule": ["weekly"]
}, },
{ {
"groupName": "Compound", "groupName": "Compound",
"schedule": "before 5am on Tuesday and Friday", "matchPackageNames": ["@vector-im/compound-{/,}**"],
"matchPackageNames": ["@vector-im/compound-{/,}**"] "schedule": ["weekly"]
}, },
{ {
"groupName": "LiveKit client", "groupName": "LiveKit client",
"matchDepNames": ["livekit-client"] "matchDepNames": ["livekit-client"],
"schedule": ["weekly"]
}, },
{ {
"groupName": "LiveKit components", "groupName": "LiveKit components",
"matchPackageNames": ["@livekit/components-{/,}**"] "matchPackageNames": ["@livekit/components-{/,}**"],
"schedule": ["weekly"]
}, },
{ {
"groupName": "Vaul", "groupName": "Vaul",
"matchDepNames": ["vaul"], "matchDepNames": ["vaul"],
"extends": ["schedule:monthly"],
"prHeader": "Please review modals on mobile for visual regressions." "prHeader": "Please review modals on mobile for visual regressions."
} }
], ],
"semanticCommits": "disabled", "semanticCommits": "disabled",
"ignoreDeps": ["posthog-js"] "ignoreDeps": ["posthog-js"],
"vulnerabilityAlerts": {
"schedule": ["at any time"],
"prHourlyLimit": 0,
"minimumReleaseAge": null
}
} }