From 0cbeb8b5e342d515e38ee8cceb09ceb6cd4af4b3 Mon Sep 17 00:00:00 2001 From: DeveloperC Date: Sun, 1 Dec 2024 02:06:00 +0000 Subject: [PATCH] ci: adding Renovate GitHub Workflow Earthly updating (#67) --- renovate.json | 19 +++++++++++++++++-- 1 file changed, 17 insertions(+), 2 deletions(-) diff --git a/renovate.json b/renovate.json index 6ba7a6d..4cad3fa 100644 --- a/renovate.json +++ b/renovate.json @@ -13,14 +13,18 @@ "customManagers": [ { "customType": "regex", - "fileMatch": ["^Earthfile$"], + "fileMatch": [ + "^Earthfile$" + ], "matchStrings": [ "# renovate: datasource=(?.*?) depName=(?.*?)( versioning=(?.*?))?\\s.+_VERSION=\"(?.*?)\"\\s" ] }, { "customType": "regex", - "fileMatch": ["^Earthfile$"], + "fileMatch": [ + "^Earthfile$" + ], "matchStrings": [ "# renovate: datasource=repology packageName=alpine_(?\\d+[._]\\d+)" ], @@ -29,6 +33,17 @@ "depNameTemplate": "alpine", "versioningTemplate": "regex:^(?\\d+)[._](?\\d+)$", "autoReplaceStringTemplate": "# renovate: datasource=repology packageName=alpine_{{{newMajor}}}_{{{newMinor}}}" + }, + { + "customType": "regex", + "fileMatch": [ + "^[.]github/workflows/" + ], + "matchStrings": [ + ".*version: (?.*?)\\s" + ], + "datasourceTemplate": "docker", + "depNameTemplate": "earthly/earthly" } ] }