From 4a75a2e7232cce7f8ff5750d647f536f6ef0b5ff Mon Sep 17 00:00:00 2001 From: Stefan Zweifel Date: Sat, 24 Oct 2020 11:33:52 +0200 Subject: [PATCH] Disable shellsheck for git-checkout --- entrypoint.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/entrypoint.sh b/entrypoint.sh index 6f8ed00..7361895 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -44,6 +44,7 @@ _switch_to_branch() { git fetch; # Switch to branch from current Workflow run + # shellcheck disable=SC2086 git checkout $INPUT_BRANCH; }