Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
87 changes: 87 additions & 0 deletions renovate.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,87 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended",
":approveMajorUpdates",
"schedule:weekends",
"helpers:pinGitHubActionDigests"
],
"dependencyDashboard": true,
"labels": [
"dependencies"
],
"packageRules": [
{
"description": "Group all non-major updates in GitHub Actions workflows",
"matchManagers": [
"github-actions"
],
"matchUpdateTypes": [
"minor",
"patch"
],
"groupName": "github-actions non-major updates",
"automerge": true
},
{
"description": "Group all non-major updates in Helm values files",
"matchManagers": [
"helm-values"
],
"matchUpdateTypes": [
"minor",
"patch"
],
"groupName": "helm-values non-major updates",
"automerge": true
},
{
"description": "Group all non-major updates in Maven projects",
"matchManagers": [
"maven"
],
"matchUpdateTypes": [
"minor",
"patch"
],
"groupName": "maven non-major updates",
"automerge": true
},
{
"description": "Group all non-major updates in Maven Wrapper scripts",
"matchManagers": [
"maven-wrapper"
],
"matchUpdateTypes": [
"minor",
"patch"
],
"groupName": "maven-wrapper non-major updates",
"automerge": true
},
{
"description": "Group all non-major updates in npm projects",
"matchManagers": [
"npm"
],
"matchUpdateTypes": [
"minor",
"patch"
],
"groupName": "npm non-major updates",
"automerge": true
},
{
"description": "Group all non-major updates in Bundler projects",
"matchManagers": [
"bundler"
],
"matchUpdateTypes": [
"minor",
"patch"
],
"groupName": "bundler non-major updates",
"automerge": true
}
]
}
Loading