From 62143959e6bc184523cf7f8810258a23811cb877 Mon Sep 17 00:00:00 2001 From: florianvazelle Date: Sat, 30 Dec 2023 15:28:25 +0100 Subject: [PATCH] ci: update renovate config --- .github/renovate.json | 57 ++++++++++++++++++++++++++----------------- 1 file changed, 34 insertions(+), 23 deletions(-) diff --git a/.github/renovate.json b/.github/renovate.json index 9c9af74..033f6b7 100644 --- a/.github/renovate.json +++ b/.github/renovate.json @@ -1,24 +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" - } - ] - } + "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" + } + ] +}