From 7cc1e9fc9357a0dcd39ebc280fe19492be7462f7 Mon Sep 17 00:00:00 2001 From: Stefan Zweifel Date: Wed, 23 Feb 2022 20:50:10 +0100 Subject: [PATCH] Update comment --- entrypoint.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/entrypoint.sh b/entrypoint.sh index c33725d..dee54a9 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -58,8 +58,7 @@ _switch_to_branch() { if "$INPUT_SKIP_CHECKOUT"; then echo "::debug::git-checkout has not been executed"; else - - # Create new local branch if `create_branch` input is true + # Create new local branch if `create_branch`-input is true if "$INPUT_CREATE_BRANCH"; then # shellcheck disable=SC2086 git checkout -B $INPUT_BRANCH --;