From 0090822746015f84522cc382aa28e6c07909d147 Mon Sep 17 00:00:00 2001 From: Maksym Vlasov Date: Mon, 20 Feb 2023 18:05:42 +0200 Subject: [PATCH] feat: Remove `v` prefix in Dockerfile `_VERSION` variables (#54) Put an `x` into the box if that applies: - [ ] This PR introduces breaking change. - [ ] This PR fixes a bug. - [ ] This PR adds new functionality. - [x] This PR enhances existing functionality. ### How was it tested It works the same as for GHA --- default.template.json5 | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/default.template.json5 b/default.template.json5 index dbdbeba..44bd790 100644 --- a/default.template.json5 +++ b/default.template.json5 @@ -68,10 +68,9 @@ "enabled": true }, "packageRules": [ - // Maybe useful. Get it from https://github.com/renovatebot/.github/blob/d9b3c1914f4bf9dbecc6456610ca89530260572f/default.json#L39-L44 { - "description": "v prefix workaround for action updates", - "matchDepTypes": ["action"], + "description": "v prefix workaround for action and Dockerfile updates", + "matchDepTypes": ["action", "docker"], "extractVersion": "^(?v\\d+\\.\\d+\\.\\d+)$", "versioning": "regex:^v(?\\d+)(\\.(?\\d+)\\.(?\\d+))?$" },