We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d330c71 commit 9a49026Copy full SHA for 9a49026
entrypoint.sh
@@ -124,13 +124,15 @@ _switch_to_branch() {
124
if "$INPUT_SKIP_FETCH"; then
125
_log "debug" "git-fetch will not be executed.";
126
else
127
+ _log "debug" "git-fetch will be executed.";
128
git fetch --depth=1;
129
fi
130
131
# If `skip_checkout`-input is true, skip the entire checkout step.
132
if "$INPUT_SKIP_CHECKOUT"; then
133
_log "debug" "git-checkout will not be executed.";
134
135
+ _log "debug" "git-checkout will be executed.";
136
# Create new local branch if `create_branch`-input is true
137
if "$INPUT_CREATE_BRANCH"; then
138
# shellcheck disable=SC2086
0 commit comments