From 6eeb93f6baaba6c2c5a6152f736e3cc7b174f55d Mon Sep 17 00:00:00 2001 From: Boris Yumankulov Date: Fri, 20 Jun 2025 21:48:49 +0500 Subject: [PATCH] fix(renovate): config syntax Signed-off-by: Boris Yumankulov --- renovate.json | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/renovate.json b/renovate.json index 1f4e07e..ee737a2 100644 --- a/renovate.json +++ b/renovate.json @@ -1,7 +1,11 @@ { "$schema": "https://docs.renovatebot.com/renovate-schema.json", - "extends": ["config:best-practices"], + "extends": [ + "config:best-practices" + ], + "rebaseWhen": "never", + "packageRules": [ { "automerge": true, @@ -9,10 +13,9 @@ }, { "enabled": false, - "matchFileNames": [ - ".gitea/workflows/**.yml", - ".gitea/workflows/**.yaml", - ] - } + "matchUpdateTypes": ["digest", "pinDigest", "pin"], + "matchDepTypes": ["container"], + "matchFileNames": [".gitea/workflows/**.yaml", ".gitra/workflows/**.yml"], + }, ] }