Files
element-call/renovate.json

69 lines
1.8 KiB
JSON
Raw Normal View History

2023-08-30 08:52:59 +00:00
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended",
"schedule:monthly",
":enableVulnerabilityAlertsWithLabel(security)"
],
"addLabels": ["dependencies"],
"minimumReleaseAge": "5 days",
2023-08-30 14:42:58 +01:00
"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"],
2023-08-30 14:42:58 +01:00
"enabled": false
},
{
"groupName": "matrix-widget-api",
"matchDepNames": ["matrix-widget-api"],
2025-01-29 18:21:08 +00:00
"extends": ["schedule:weekly"]
},
{
"groupName": "Compound",
"matchPackageNames": ["@vector-im/compound-{/,}**"],
2025-01-29 18:21:08 +00:00
"extends": ["schedule:weekly"]
},
{
"groupName": "LiveKit client",
"matchDepNames": ["livekit-client"],
2025-01-29 18:21:08 +00:00
"extends": ["schedule:weekly"]
},
{
"groupName": "LiveKit components",
"matchPackageNames": ["@livekit/components-{/,}**"],
2025-01-29 18:21:08 +00:00
"extends": ["schedule:weekly"]
},
{
"groupName": "Vaul",
"matchDepNames": ["vaul"],
"prHeader": "Please review modals on mobile for visual regressions."
},
{
2025-04-11 12:37:35 +02:00
"groupName": "embedded package dependencies",
"matchFileNames": ["embedded/**/*"]
},
{
"groupName": "Yarn",
2025-04-11 12:39:51 +02:00
"matchDepNames": ["yarn"]
2023-08-30 14:42:58 +01:00
}
],
"semanticCommits": "disabled",
"ignoreDeps": ["posthog-js", "eslint-plugin-matrix-org"],
"vulnerabilityAlerts": {
"schedule": ["at any time"],
"prHourlyLimit": 0,
"minimumReleaseAge": null
}
2023-08-30 08:52:59 +00:00
}