67 lines
1.7 KiB
JSON
67 lines
1.7 KiB
JSON
{
|
|
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
|
"extends": [
|
|
"config:recommended",
|
|
"helpers:pinGitHubActionDigests",
|
|
":semanticCommitTypeAll(chore)"
|
|
],
|
|
"semanticCommits": "enabled",
|
|
"semanticCommitType": "chore",
|
|
"labels": [
|
|
"renovate"
|
|
],
|
|
"git-submodules": {
|
|
"enabled": true
|
|
},
|
|
"dependencyDashboardApproval": true,
|
|
"vulnerabilityAlerts": {
|
|
"enabled": true,
|
|
"groupName": "vulnerability-updates",
|
|
"dependencyDashboardApproval": false,
|
|
"semanticCommitType": "fix",
|
|
"semanticCommitScope": "security",
|
|
"commitMessageSuffix": "[SECURITY]"
|
|
},
|
|
"packageRules": [
|
|
{
|
|
"description": "Automerge minor updates if they are not 0.x releases",
|
|
"matchUpdateTypes": ["minor"],
|
|
"matchCurrentVersion": "!/^0/",
|
|
"automerge": true
|
|
},
|
|
{
|
|
"description": "Automerge patch and digest updates",
|
|
"matchUpdateTypes": ["patch", "digest"],
|
|
"automerge": true
|
|
},
|
|
{
|
|
"description": "Automerge github action updates of all types except releasing ones",
|
|
"matchManagers": ["github-actions"],
|
|
"excludeDepNames": [
|
|
"google-github-actions/release-please-action",
|
|
"googleapis/release-please-action",
|
|
"goreleaser/goreleaser-action"
|
|
],
|
|
"automerge": true
|
|
},
|
|
{
|
|
"description": "Automerge submodules",
|
|
"matchManagers": ["git-submodules"],
|
|
"automerge": true
|
|
},
|
|
{
|
|
"description": "Automerge devdependency updates of all types",
|
|
"matchUpdateTypes": [
|
|
"minor",
|
|
"patch",
|
|
"pin",
|
|
"digest"
|
|
],
|
|
"matchDepTypes": [
|
|
"devDependencies"
|
|
],
|
|
"automerge": true
|
|
}
|
|
]
|
|
}
|