From 040111b36775c1033b4703b77f9c5c203da18936 Mon Sep 17 00:00:00 2001 From: Tonye Jack Date: Mon, 25 Oct 2021 16:02:53 -0400 Subject: [PATCH] Disable pulling tags (#225) Fixes: #220 --- entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/entrypoint.sh b/entrypoint.sh index c7232cef..17ea7120 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -49,7 +49,7 @@ if [[ -z $GITHUB_BASE_REF ]]; then else TARGET_BRANCH=$GITHUB_BASE_REF CURRENT_BRANCH=$GITHUB_HEAD_REF - git fetch temp_changed_files -u "${TARGET_BRANCH}":"${TARGET_BRANCH}" + git fetch temp_changed_files --no-tags -u "${TARGET_BRANCH}":"${TARGET_BRANCH}" if [[ -z $INPUT_BASE_SHA ]]; then PREVIOUS_SHA=$(git rev-parse "${TARGET_BRANCH}" 2>&1) && exit_status=$? || exit_status=$? else