From cc49e63680913924af20cb709342538b2f2ce253 Mon Sep 17 00:00:00 2001 From: Keewis Date: Wed, 13 Jan 2021 23:43:22 +0100 Subject: [PATCH] don't add a progress report when printing to a file [skip-ci] --- .github/actions/detect-ci-trigger/script.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/detect-ci-trigger/script.sh b/.github/actions/detect-ci-trigger/script.sh index dbdda466849..c74292e501b 100644 --- a/.github/actions/detect-ci-trigger/script.sh +++ b/.github/actions/detect-ci-trigger/script.sh @@ -6,7 +6,7 @@ echo "::group::fetch a sufficient number of commits" git log -n 5 2>&1 if [[ "$event_name" == "pull_request" ]]; then ref=$(git log -1 --format='%H') - git -c protocol.version=2 fetch --deepen=2 --no-tags --prune --progress origin $ref 2>&1 + git -c protocol.version=2 fetch --deepen=2 --no-tags --prune origin $ref 2>&1 git log FETCH_HEAD git checkout FETCH_HEAD else