Files
element-call-Github/renovate.json
Hugh Nimmo-Smith fde8bf4f5d Adjust renovate bot schedule and enable vulnerability updates
- Default schedule of monthly => less noise
- Minimum release age of 5 days => we don't need to be at the bleeding edge for most things
- Add "dependencies" label to PRs
- Enable security updates at any time
2025-01-29 11:06:01 +00:00

61 lines
1.6 KiB
JSON

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