From aa778cb1b7bce8969a2416f4935af8fddae41511 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 24 Apr 2026 05:01:57 +0000 Subject: [PATCH] chore(config): migrate config .github/renovate.json5 --- .github/renovate.json5 | 72 ++++++++++++++++++++++++------------------ 1 file changed, 41 insertions(+), 31 deletions(-) diff --git a/.github/renovate.json5 b/.github/renovate.json5 index f1d3bc6..a213965 100644 --- a/.github/renovate.json5 +++ b/.github/renovate.json5 @@ -1,31 +1,41 @@ -{ - "$schema": "https://docs.renovatebot.com/renovate-schema.json", - "extends": [ - "config:recommended" - ], - "customManagers": [ - { - "customType": "regex", - "fileMatch": ["^image-versions\\.yml$"], - "matchStrings": [ - "image:\\s+(?[^\\s]+)\\s+tag:\\s+(?[^\\s]+)\\s+digest:\\s+(?sha256:[a-f0-9]+)" - ], - "datasourceTemplate": "docker" - } - ], - "packageRules": [ - { - "matchUpdateTypes": ["minor", "pin", "digest", "pinDigest", "patch"], - "automerge": true, - "automergeType": "pr", - "automergeStrategy": "squash" - }, - { - "automerge": true, - "matchUpdateTypes": ["digest"], - "matchDepNames": [ - "ghcr.io/projectbluefin/common" - ] - } - ] -} +{ + $schema: 'https://docs.renovatebot.com/renovate-schema.json', + extends: [ + 'config:recommended', + ], + customManagers: [ + { + customType: 'regex', + managerFilePatterns: [ + '/^image-versions\\.yml$/', + ], + matchStrings: [ + 'image:\\s+(?[^\\s]+)\\s+tag:\\s+(?[^\\s]+)\\s+digest:\\s+(?sha256:[a-f0-9]+)', + ], + datasourceTemplate: 'docker', + }, + ], + packageRules: [ + { + matchUpdateTypes: [ + 'minor', + 'pin', + 'digest', + 'pinDigest', + 'patch', + ], + automerge: true, + automergeType: 'pr', + automergeStrategy: 'squash', + }, + { + automerge: true, + matchUpdateTypes: [ + 'digest', + ], + matchDepNames: [ + 'ghcr.io/projectbluefin/common', + ], + }, + ], +}