From 278a4e3aea8ff721a7b2d3c175ebcf72c855aaf7 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sun, 1 Mar 2026 19:15:29 +0200 Subject: [PATCH] chore(config): migrate config .github/renovate.json (#121) --- .github/renovate.json | 25 +++++++++++++++++++------ 1 file changed, 19 insertions(+), 6 deletions(-) diff --git a/.github/renovate.json b/.github/renovate.json index 622a306..6800efe 100644 --- a/.github/renovate.json +++ b/.github/renovate.json @@ -1,23 +1,36 @@ { "$schema": "https://docs.renovatebot.com/renovate-schema.json", - "extends": ["github>ivuorinen/renovate-config", "schedule:weekly"], + "extends": [ + "github>ivuorinen/renovate-config", + "schedule:weekly" + ], "customManagers": [ { "customType": "regex", - "managerFilePatterns": ["^Makefile$", ".*\\.mk$"], + "managerFilePatterns": [ + "^Makefile$", + ".*\\.mk$" + ], "matchStrings": [ "#\\s*renovate:\\s*datasource=(?\\S+)\\s+depName=(?\\S+)\\n[A-Z_]+\\s*:?=\\s*(?v?\\d+\\.\\d+\\.\\d+\\S*)" ], "versioningTemplate": "semver" } ], - "stabilityDays": 3, + "minimumReleaseAge": "3 days", "packageRules": [ { - "matchManagers": ["custom.regex"], - "matchFileNames": ["Makefile", "**/*.mk"], + "matchManagers": [ + "custom.regex" + ], + "matchFileNames": [ + "Makefile", + "**/*.mk" + ], "groupName": "development tools", - "schedule": ["before 6am on monday"] + "schedule": [ + "before 6am on monday" + ] } ] }