feat: added automerge to renovate

This commit is contained in:
2025-01-17 12:33:14 +01:00
parent e77fe115c6
commit dafdf34f71
2 changed files with 9 additions and 3 deletions

View File

@@ -5,6 +5,7 @@ on:
branches: branches:
- dev - dev
- master - master
- renovate/**
paths-ignore: paths-ignore:
- "**/.github/**" - "**/.github/**"
- "**/.gitignore" - "**/.gitignore"

View File

@@ -1,7 +1,12 @@
{ {
"$schema": "https://docs.renovatebot.com/renovate-schema.json", "$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [ "extends": ["config:recommended", ":semanticCommitTypeAll(feat)"],
"config:recommended", "packageRules": [
":semanticCommitTypeAll(feat)" {
"automerge": true,
"description": "Automerge non-major updates",
"matchUpdateTypes": ["minor", "patch"],
"automergeType": "branch"
}
] ]
} }