Set depth on git-fetch

This commit is contained in:
Stefan Zweifel 2020-12-13 09:22:38 +01:00
parent 6576a06e26
commit fafea853e8

View File

@ -41,7 +41,7 @@ _switch_to_branch() {
echo "INPUT_BRANCH value: $INPUT_BRANCH"; echo "INPUT_BRANCH value: $INPUT_BRANCH";
# Fetch remote to make sure that repo can be switched to the right branch. # Fetch remote to make sure that repo can be switched to the right branch.
git fetch; git fetch --depth=3;
# Switch to branch from current Workflow run # Switch to branch from current Workflow run
# shellcheck disable=SC2086 # shellcheck disable=SC2086