From 6a46f5c4a6e27f23f3e5404ace587ed120709a99 Mon Sep 17 00:00:00 2001 From: Tugdual Saunier Date: Tue, 27 Sep 2022 12:39:21 -0400 Subject: [PATCH] Add missing `tag` input It's documented and in the JS code but can not be used as it is not defined in `action.yml`. --- action.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/action.yml b/action.yml index fa89b30..6d2830f 100644 --- a/action.yml +++ b/action.yml @@ -17,6 +17,10 @@ inputs: description: "which part of the semver needs to be updated?" required: false default: "patch" + tag: + description: "custom tag to be added to the current SHA" + required: false + default: "" branch: description: "force to tag a specific branch" required: false