From 443d29cc6948b8cbb2967af7296c0cbd68452f41 Mon Sep 17 00:00:00 2001 From: Max Dymond Date: Tue, 14 May 2024 09:57:03 +0100 Subject: [PATCH] ci: reconfigure renovate - set prefix for github actions updates to be gha: - set prefix for other renovate actions to be ci: - disable debian updates in linux-old.yml --- renovate.json | 25 +++++++++++++++++++++++-- 1 file changed, 23 insertions(+), 2 deletions(-) diff --git a/renovate.json b/renovate.json index 98807990b6..a87daa56e4 100644 --- a/renovate.json +++ b/renovate.json @@ -1,8 +1,29 @@ { "$schema": "https://docs.renovatebot.com/renovate-schema.json", "extends": [ - "config:best-practices", - "group:allNonMajor" + "config:best-practices" + ], + "packageRules": [ + { + "matchManagers": ["github-actions"], + "commitMessagePrefix": "gha: ", + "labels": ["CI"] + }, + { + "matchUpdateTypes": ["pin", "pinDigest"], + "commitMessagePrefix": "ci: ", + "labels": ["CI"] + }, + { + "matchManagers": ["regex"], + "commitMessagePrefix": "ci: ", + "labels": ["CI"] + }, + { + "matchDepNames": ["debian"], + "matchFileNames": [".github/workflows/linux-old.yml"], + "enabled": false + } ], "customManagers": [ { -- 2.47.3