From 9fb9f4047482578206cdf6a0e3e3cedcbedc8e03 Mon Sep 17 00:00:00 2001 From: phips28 Date: Thu, 1 Jul 2021 21:36:19 +0200 Subject: [PATCH] fix missing required flag --- action.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/action.yml b/action.yml index 8fcfca2..d9da0e1 100644 --- a/action.yml +++ b/action.yml @@ -18,11 +18,14 @@ inputs: major-wording: description: 'Words list that trigger a major version bump' default: 'BREAKING CHANGE,major' + required: false patch-wording: description: 'Words list that trigger a patch version bump' + required: false rc-wording: description: 'Words list that trigger a patch version bump' default: 'pre-alpha,pre-beta,pre-rc' + required: false skip-tag: description: 'Avoid to add a TAG to the version update commit' default: 'false'