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