From 158e053d4f432c45fb009488b8fa2eea82c34ef3 Mon Sep 17 00:00:00 2001 From: Philip Schmid Date: Mon, 3 Jun 2024 08:15:23 +0200 Subject: [PATCH] Renovate: Remove duplicate packageRules key Signed-off-by: Philip Schmid --- .github/renovate.json | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) diff --git a/.github/renovate.json b/.github/renovate.json index 701af16..b4d7153 100644 --- a/.github/renovate.json +++ b/.github/renovate.json @@ -37,8 +37,8 @@ }, { "matchDepNames": ["siderolabs/talos"], - "matchUpdateTypes": ["patch"], - "groupName": "Talos" + "groupName": "Talos", + "matchUpdateTypes": ["patch"] }, { "description": "Do not allow any updates for major.minor, they will be done by maintainers", @@ -47,6 +47,13 @@ ], "matchUpdateTypes": ["major", "minor"], "enabled": false + }, + { + "description": "Automerge github-actions updates.", + "matchUpdateTypes": ["minor", "patch", "digest"], + "matchManagers": ["github-actions"], + "automerge": true, + "automergeType": "pr" } ], "customManagers": [ @@ -61,13 +68,5 @@ "#\\s*renovate:\\s*(datasource=(?.*?))?\\s*depName=(?.*?)\\s+.+-\\s*['|\"]?(?v?\\d+\\.\\d+\\.\\d+)['|\"]?" ] } - ], - "packageRules": [ - { - "matchUpdateTypes": ["minor", "patch", "digest"], - "matchManagers": ["github-actions"], - "automerge": true, - "automergeType": "pr" - } ] }