Files
lk-jwt-service/renovate.json
Robin 6b496a013b Consolidate non-major dependency updates into larger batches (#160)
Configuring Renovate to work like it does on our other repos, where we get one big PR for all non-major updates every once in a while.
2026-03-09 21:50:57 +01:00

32 lines
748 B
JSON

{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended",
"schedule:monthly",
"helpers:pinGitHubActionDigestsToSemver",
":enableVulnerabilityAlertsWithLabel(security)"
],
"addLabels": ["dependencies"],
"vulnerabilityAlerts": {
"schedule": [
"at any time"
],
"prHourlyLimit": 0,
"minimumReleaseAge": null
},
"packageRules": [
{
"groupName": "GitHub Actions",
"matchDepTypes": ["action"],
"pinDigests": true
},
{
"groupName": "all non-major dependencies",
"groupSlug": "all-minor-patch",
"matchUpdateTypes": ["minor", "patch"]
}
],
"semanticCommits": "disabled",
"minimumReleaseAge": "5 days"
}