From 7fdaaf4f60c83a0abafbac0468c0b67a55aee6f4 Mon Sep 17 00:00:00 2001 From: Namrata Jha Date: Fri, 12 Nov 2021 03:55:37 +0000 Subject: [PATCH] fix default regex string --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index 2aaca1b..9a374e7 100644 --- a/action.yml +++ b/action.yml @@ -45,7 +45,7 @@ inputs: Comma seperated regex patterns of versions to ignore. Defaults to all major release versions and only deletes pre-release versions. required: false - default: "^[\\d*]+.[\\d*]+.[0*]+$" + default: "^(0|[1-9]\d*)\.(0|[1-9]\d*)\.(0+)$" token: description: >