1
0
mirror of https://github.com/stefanzweifel/git-auto-commit-action.git synced 2026-02-02 16:47:19 +08:00

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";
# 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
# shellcheck disable=SC2086