Disable shellsheck for git-checkout

This commit is contained in:
Stefan Zweifel 2020-10-24 11:33:52 +02:00
parent 1e826be61c
commit 4a75a2e723
1 changed files with 1 additions and 0 deletions

View File

@ -44,6 +44,7 @@ _switch_to_branch() {
git fetch;
# Switch to branch from current Workflow run
# shellcheck disable=SC2086
git checkout $INPUT_BRANCH;
}