From dafdf34f71d276446c07ef89100d201e64ddf31d Mon Sep 17 00:00:00 2001 From: Conrad Date: Fri, 17 Jan 2025 12:33:14 +0100 Subject: [PATCH] feat: added automerge to renovate --- .github/workflows/ci.yml | 1 + renovate.json | 11 ++++++++--- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4dea0b9..82062ef 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -5,6 +5,7 @@ on: branches: - dev - master + - renovate/** paths-ignore: - "**/.github/**" - "**/.gitignore" diff --git a/renovate.json b/renovate.json index 88b0152..0190ddb 100644 --- a/renovate.json +++ b/renovate.json @@ -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" + } ] }