From e8409cc1f77272da048467d04deb6e9c1f2a7de4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niccol=C3=B2=20Fei?= Date: Fri, 8 Mar 2024 16:54:29 +0100 Subject: [PATCH] chore: add external-snapshotter and rook to Renovate MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Niccolò Fei --- .github/renovate.json5 | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/.github/renovate.json5 b/.github/renovate.json5 index 06cd4b9295..90e4b0a3be 100644 --- a/.github/renovate.json5 +++ b/.github/renovate.json5 @@ -47,6 +47,32 @@ "versioningTemplate": "loose", "depNameTemplate": "github.com/goreleaser/goreleaser", }, { + // We want a PR to bump the external-snapshotter version + "fileMatch": [ + "^.github/workflows/continuous-delivery.yml", + "^hack/setup-cluster\.sh$", + ], + "matchStrings": [ + "EXTERNAL_SNAPSHOTTER_VERSION: \"(?.*?)\"", + ], + "datasourceTemplate": "github-releases", + "versioningTemplate": "loose", + "depNameTemplate": "kubernetes-csi/external-snapshotter", + "extractVersionTemplate": "^(?v\\d+\\.\\d+\\.\\d+)" + }, { + // We want a PR to bump the rook version + "fileMatch": [ + "^.github/workflows/continuous-delivery.yml", + ], + "matchStrings": [ + "ROOK_VERSION: \"(?.*?)\"", + ], + "datasourceTemplate": "github-releases", + "versioningTemplate": "loose", + "depNameTemplate": "rook/rook", + "extractVersionTemplate": "^(?v\\d+\\.\\d+\\.\\d+)" + }, { + // We want a PR to bump kind version "fileMatch": [ "^.github/workflows/continuous-delivery.yml" ],