Update comment

This commit is contained in:
Stefan Zweifel 2022-02-23 20:50:10 +01:00
parent 344102fef7
commit 7cc1e9fc93
1 changed files with 1 additions and 2 deletions

View File

@ -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 --;