Compare commits

...

1 Commits
1.2.4 ... 1.3.0

Author SHA1 Message Date
dafdf34f71 feat: added automerge to renovate 2025-01-17 12:33:14 +01:00
2 changed files with 9 additions and 3 deletions

View File

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

View File

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