From b6eaeb11c47e7ff1ec839dcada688a38821529af Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Thu, 30 Jan 2025 10:59:21 +0000 Subject: [PATCH] Migrate config renovate.json --- renovate.json | 23 ++++++++++++++++++----- 1 file changed, 18 insertions(+), 5 deletions(-) diff --git a/renovate.json b/renovate.json index 7909174..602ca7f 100644 --- a/renovate.json +++ b/renovate.json @@ -1,17 +1,27 @@ { "$schema": "https://docs.renovatebot.com/renovate-schema.json", - "extends": ["local>actions/renovate-config"], + "extends": [ + "local>actions/renovate-config" + ], "customManagers": [ { + "customType": "regex", "description": "update runner in RUNNER_VERSION", - "fileMatch": ["RUNNER_VERSION"], - "matchStrings": ["^(?v\\d+\\.\\d+\\.\\d+)$"], + "fileMatch": [ + "RUNNER_VERSION" + ], + "matchStrings": [ + "^(?v\\d+\\.\\d+\\.\\d+)$" + ], "datasourceTemplate": "docker", "depNameTemplate": "data.forgejo.org/forgejo/runner" }, { + "customType": "regex", "description": "update runner in README.md", - "fileMatch": ["README.md"], + "fileMatch": [ + "README.md" + ], "matchStrings": [ "| runner-version | .+? | (?v\\d+\\.\\d+\\.\\d+) |" ], @@ -19,8 +29,11 @@ "depNameTemplate": "data.forgejo.org/forgejo/runner" }, { + "customType": "regex", "description": "update runner in action.yml", - "fileMatch": ["action.yml"], + "fileMatch": [ + "action.yml" + ], "matchStrings": [ "\\s+runner-version:\\s+description: .+?\\s+default: (?v\\d+\\.\\d+\\.\\d+)\\s" ],