From 7461606276f5cc8064dded16a75be7109406e84d Mon Sep 17 00:00:00 2001 From: Lucas Schwiderski Date: Fri, 30 May 2025 11:56:23 +0200 Subject: [PATCH 1/2] Disable excessive rebase for Renovate --- .renovaterc | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.renovaterc b/.renovaterc index cab3a00..e6cd36a 100644 --- a/.renovaterc +++ b/.renovaterc @@ -3,8 +3,7 @@ "extends": [ "config:recommended", ":combinePatchMinorReleases", - ":enableVulnerabilityAlerts", - ":rebaseStalePrs" + ":enableVulnerabilityAlerts" ], "prConcurrentLimit": 10, "branchPrefix": "renovate/", From d9222a46d349edfc9ca2242803eb706fa09d3d7f Mon Sep 17 00:00:00 2001 From: Lucas Schwiderski Date: Fri, 30 May 2025 11:56:49 +0200 Subject: [PATCH 2/2] Format Renovate config --- .renovaterc | 110 ++++++++++++++++++++++++++-------------------------- 1 file changed, 55 insertions(+), 55 deletions(-) diff --git a/.renovaterc b/.renovaterc index e6cd36a..a2155de 100644 --- a/.renovaterc +++ b/.renovaterc @@ -1,57 +1,57 @@ { - "$schema": "https://docs.renovatebot.com/renovate-schema.json", - "extends": [ - "config:recommended", - ":combinePatchMinorReleases", - ":enableVulnerabilityAlerts" - ], - "prConcurrentLimit": 10, - "branchPrefix": "renovate/", - "customManagers": [ - { - "customType": "regex", - "description": "Update _VERSION variables in Dockerfiles", - "fileMatch": [ - "(^|/|\\.)Dockerfile$", - "(^|/)Dockerfile\\.[^/]*$" - ], - "matchStrings": [ - "# renovate: datasource=(?[a-z-]+?)(?: depName=(?.+?))? packageName=(?.+?)(?: versioning=(?[a-z-]+?))?\\s(?:ENV|ARG) .+?_VERSION=(?.+?)\\s" - ] - }, - { - "customType": "regex", - "description": "Update git-ref pip packages", - "fileMatch": [ - "(^|/)requirements.txt$" - ], - "matchStrings": [ - "(# renovate:( branch=(?\\S+))?\\n)?git\\+(?https://.*?)(\\.git)?@(?.*?)\\n" - ], - "currentValueTemplate": "{{#if currentValue}}{{{currentValue}}}{{else}}master{{/if}}", - "datasourceTemplate": "git-refs", - "versioningTemplate": "none" - } - ], - "packageRules": [ - { - "matchDatasources": [ - "github-release" - ], - "matchPackageNames": [ - "llvm/llvm-project" - ], - "extractVersion": "^llvmorg-(?\\d+)\\.\\d+\\.\\d+$" - }, - { - "matchPackageNames": [ - "nodejs/node", - "nodejs" - ], - "matchDatasources": [ - "docker" - ], - "versioning": "node" - } - ] + "$schema": "https://docs.renovatebot.com/renovate-schema.json", + "extends": [ + "config:recommended", + ":combinePatchMinorReleases", + ":enableVulnerabilityAlerts" + ], + "prConcurrentLimit": 10, + "branchPrefix": "renovate/", + "customManagers": [ + { + "customType": "regex", + "description": "Update _VERSION variables in Dockerfiles", + "fileMatch": [ + "(^|/|\\.)Dockerfile$", + "(^|/)Dockerfile\\.[^/]*$" + ], + "matchStrings": [ + "# renovate: datasource=(?[a-z-]+?)(?: depName=(?.+?))? packageName=(?.+?)(?: versioning=(?[a-z-]+?))?\\s(?:ENV|ARG) .+?_VERSION=(?.+?)\\s" + ] + }, + { + "customType": "regex", + "description": "Update git-ref pip packages", + "fileMatch": [ + "(^|/)requirements.txt$" + ], + "matchStrings": [ + "(# renovate:( branch=(?\\S+))?\\n)?git\\+(?https://.*?)(\\.git)?@(?.*?)\\n" + ], + "currentValueTemplate": "{{#if currentValue}}{{{currentValue}}}{{else}}master{{/if}}", + "datasourceTemplate": "git-refs", + "versioningTemplate": "none" + } + ], + "packageRules": [ + { + "matchDatasources": [ + "github-release" + ], + "matchPackageNames": [ + "llvm/llvm-project" + ], + "extractVersion": "^llvmorg-(?\\d+)\\.\\d+\\.\\d+$" + }, + { + "matchPackageNames": [ + "nodejs/node", + "nodejs" + ], + "matchDatasources": [ + "docker" + ], + "versioning": "node" + } + ] }