Skip to content

Commit 9a49026

Browse files
committed
Update Tests
1 parent d330c71 commit 9a49026

File tree

2 files changed

+271
-54
lines changed

2 files changed

+271
-54
lines changed

entrypoint.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -124,13 +124,15 @@ _switch_to_branch() {
124124
if "$INPUT_SKIP_FETCH"; then
125125
_log "debug" "git-fetch will not be executed.";
126126
else
127+
_log "debug" "git-fetch will be executed.";
127128
git fetch --depth=1;
128129
fi
129130
130131
# If `skip_checkout`-input is true, skip the entire checkout step.
131132
if "$INPUT_SKIP_CHECKOUT"; then
132133
_log "debug" "git-checkout will not be executed.";
133134
else
135+
_log "debug" "git-checkout will be executed.";
134136
# Create new local branch if `create_branch`-input is true
135137
if "$INPUT_CREATE_BRANCH"; then
136138
# shellcheck disable=SC2086

0 commit comments

Comments
 (0)