From 05d782161431876235b45073adc6a6ff97f7084e Mon Sep 17 00:00:00 2001 From: florianvazelle Date: Sat, 30 Dec 2023 15:41:10 +0100 Subject: [PATCH] ci: fix renovate config --- .github/renovate.json | 66 +++++++++++++++++++++---------------------- 1 file changed, 33 insertions(+), 33 deletions(-) diff --git a/.github/renovate.json b/.github/renovate.json index 720f78c..033f6b7 100644 --- a/.github/renovate.json +++ b/.github/renovate.json @@ -1,35 +1,35 @@ { - "regexManagers": [ - { - "fileMatch": ["^plug\\.gd$"], - "matchStrings": [ - "\\s+plug\\(\"(?.*?)\",\\ \\{\\s*\"commit\":\\ \"(?)(?.*?)\"" - ], - "depNameTemplate": "{{{gitUrl}}}", - "packageNameTemplate": "https://github.com/{{{gitUrl}}}", - "versioningTemplate": "git", - "datasourceTemplate": "git-refs" - }, - { - "fileMatch": ["^plug\\.gd$"], - "matchStrings": [ - "\\s+plug\\(\"(?.*?)\",\\ \\{\\s*\"tag\":\\ \"(?)(?.*?)\"" - ], - "depNameTemplate": "{{{gitUrl}}}", - "packageNameTemplate": "https://github.com/{{{gitUrl}}}", - "versioningTemplate": "git", - "datasourceTemplate": "git-tags" - }, - { - "fileMatch": ["^.env$"], - "matchStrings": [ - "GODOT_VERSION=(?.*?)\\n" - ], - "depNameTemplate": "godotengine/godot", - "packageNameTemplate": "https://github.com/godotengine/godot", - "versioningTemplate": "loose", - "extractVersionTemplate": "^(?.*)-stable$", - "datasourceTemplate": "git-tags" - } - ] + "regexManagers": [ + { + "fileMatch": ["^plug\\.gd$"], + "matchStrings": [ + "\\s+plug\\(\"(?.*?)\",\\ \\{\\s*\"commit\":\\ \"(?)(?.*)\"" + ], + "depNameTemplate": "{{{gitUrl}}}", + "packageNameTemplate": "https://github.com/{{{gitUrl}}}", + "versioningTemplate": "git", + "datasourceTemplate": "git-refs" + }, + { + "fileMatch": ["^plug\\.gd$"], + "matchStrings": [ + "\\s+plug\\(\"(?.*?)\",\\ \\{\\s*\"tag\":\\ \"(?.*)\"" + ], + "depNameTemplate": "{{{gitUrl}}}", + "packageNameTemplate": "https://github.com/{{{gitUrl}}}", + "versioningTemplate": "git", + "datasourceTemplate": "git-tags" + }, + { + "fileMatch": ["^.env$"], + "matchStrings": [ + "GODOT_VERSION=(?.*?)\\n" + ], + "depNameTemplate": "godotengine/godot", + "packageNameTemplate": "https://github.com/godotengine/godot", + "versioningTemplate": "loose", + "extractVersionTemplate": "^(?.*)-stable$", + "datasourceTemplate": "git-tags" + } + ] }