From 2d661bafa0cbd68a9835d9238c20b3bfcaf4c772 Mon Sep 17 00:00:00 2001 From: Alex Lebens Date: Fri, 3 Oct 2025 23:47:01 -0500 Subject: [PATCH] ignore patches --- renovate.json | 119 ++++++++++++++++++++++---------------------------- 1 file changed, 53 insertions(+), 66 deletions(-) diff --git a/renovate.json b/renovate.json index 95aaa75..d2e216c 100644 --- a/renovate.json +++ b/renovate.json @@ -1,70 +1,57 @@ { - "$schema": "https://docs.renovatebot.com/renovate-schema.json", - "extends": [ - "config:recommended", - "mergeConfidence:all-badges", - ":rebaseStalePrs" - ], - "timezone": "US/Central", - "schedule": [ "* */1 * * *" ], - "labels": [], - "prHourlyLimit": 0, - "prConcurrentLimit": 0, - "packageRules": [ + "$schema": "https://docs.renovatebot.com/renovate-schema.json", + "extends": [ + "config:recommended", + "mergeConfidence:all-badges", + ":rebaseStalePrs" + ], + "timezone": "US/Central", + "schedule": ["* */1 * * *"], + "labels": [], + "prHourlyLimit": 0, + "prConcurrentLimit": 0, + "packageRules": [ + { + "description": "Label charts", + "matchDatasources": ["helm"], + "addLabels": ["chart"], + "automerge": false, + "bumpVersions": [ { - "description": "Label charts", - "matchDatasources": [ - "helm" - ], - "addLabels": [ - "chart" - ], - "automerge": false, - "bumpVersions": [ - { - "filePatterns": ["{{packageFileDir}}/Chart.{yaml,yml}"], - "matchStrings": ["version:\\s(?[^\\s]+)"], - "bumpType": "{{#if isPatch}}patch{{else}}minor{{/if}}" - } - ] - }, - { - "description": "Label images", - "matchDatasources": [ - "docker" - ], - "addLabels": [ - "image" - ], - "automerge": false, - "bumpVersions": [ - { - "filePatterns": ["{{packageFileDir}}/Chart.{yaml,yml}"], - "matchStrings": ["version:\\s(?[^\\s]+)"], - "bumpType": "{{#if isPatch}}patch{{else}}minor{{/if}}" - } - ] - }, - { - "description": "CNPG image", - "matchDepNames": [ - "ghcr.io/cloudnative-pg/postgresql" - ], - "matchDatasources": [ - "docker" - ], - "addLabels": [ - "image" - ], - "automerge": false, - "versioning": "deb", - "bumpVersions": [ - { - "filePatterns": ["{{packageFileDir}}/Chart.{yaml,yml}"], - "matchStrings": ["version:\\s(?[^\\s]+)"], - "bumpType": "{{#if isPatch}}patch{{else}}minor{{/if}}" - } - ] + "filePatterns": ["{{packageFileDir}}/Chart.{yaml,yml}"], + "matchStrings": ["version:\\s(?[^\\s]+)"], + "bumpType": "{{#if isPatch}}patch{{else}}minor{{/if}}" } - ] + ] + }, + { + "description": "Label images", + "matchDatasources": ["docker"], + "addLabels": ["image"], + "automerge": false, + "bumpVersions": [ + { + "filePatterns": ["{{packageFileDir}}/Chart.{yaml,yml}"], + "matchStrings": ["version:\\s(?[^\\s]+)"], + "bumpType": "{{#if isPatch}}patch{{else}}minor{{/if}}" + } + ] + }, + { + "description": "CNPG image", + "matchDepNames": ["ghcr.io/cloudnative-pg/postgresql"], + "matchDatasources": ["docker"], + "addLabels": ["image"], + "matchUpdateTypes": ["major", "minor"], + "automerge": false, + "versioning": "deb", + "bumpVersions": [ + { + "filePatterns": ["{{packageFileDir}}/Chart.{yaml,yml}"], + "matchStrings": ["version:\\s(?[^\\s]+)"], + "bumpType": "{{#if isPatch}}patch{{else}}minor{{/if}}" + } + ] + } + ] }