mirror of
https://github.com/element-hq/lk-jwt-service.git
synced 2026-03-29 06:30:00 +00:00
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.
32 lines
748 B
JSON
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"
|
|
}
|