Skip to content

Commit

Permalink
add renovate.json
Browse files Browse the repository at this point in the history
  • Loading branch information
ERP4SME-DevOps-GitHub-Admin-User committed Jul 26, 2023
1 parent fcb6ab9 commit 82ff87d
Showing 1 changed file with 80 additions and 0 deletions.
80 changes: 80 additions & 0 deletions renovate.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,80 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"labels": [
"dependencies"
],
"extends": [
"config:base"
],
"prHourlyLimit": 5,
"prConcurrentLimit": 10,
"semanticCommits": "enabled",
"postUpdateOptions": [
"gomodUpdateImportPaths"
],
"packageRules": [
{
"matchPackageNames": [
"k8s.io/client-go"
],
"allowedVersions": "<1.4.0"
},
{
"matchUpdateTypes": [
"patch",
"pin",
"digest"
],
"automerge": true,
"groupName": "non-minor dependencies",
"groupSlug": "non-minor-deps"
},
{
"matchUpdateTypes": [
"minor"
],
"automerge": true,
"groupName": "minor dependencies",
"groupSlug": "minor-deps"
},
{
"matchUpdateTypes": [
"minor"
],
"matchLanguages": [
"go",
"golang"
],
"groupName": "minor dependencies (golang)",
"groupSlug": "minor-deps-golang",
"semanticCommitScope": "go.mod/go.sum"
},
{
"matchUpdateTypes": [
"minor"
],
"matchLanguages": [
"docker"
],
"groupName": "minor dependencies (Dockerfile)",
"groupSlug": "minor-deps-dockerfile",
"semanticCommitScope": "Dockerfile"
},
{
"matchUpdateTypes": [
"major"
],
"automerge": false,
"groupName": "major dependencies",
"groupSlug": "major-deps",
"semanticCommitScope": "major deps"
},
{
"matchManagers": [
"github-actions"
],
"groupName": "github-actions",
"semanticCommitScope": "actions"
}
]
}

0 comments on commit 82ff87d

Please sign in to comment.