From 3bb33ded0aa083c8c3d72283121cdaaefa524bdb Mon Sep 17 00:00:00 2001 From: Marc Herbert Date: Mon, 8 Mar 2021 17:59:19 +0000 Subject: [PATCH] .github: http://github.com -> https:// Avoids the following redirection and warning: warning: redirecting to https://github.com/thesofproject/sof/ Fixes: f59bb62e31ab0 (".github: add shallow checkpatch to Github Actions") Also try to fix the display of one step name in the web UI. Signed-off-by: Marc Herbert --- .github/workflows/shallowfetchPRcommits.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/shallowfetchPRcommits.sh b/.github/workflows/shallowfetchPRcommits.sh index 6330a3284..d43525b2d 100755 --- a/.github/workflows/shallowfetchPRcommits.sh +++ b/.github/workflows/shallowfetchPRcommits.sh @@ -62,7 +62,7 @@ main() # faster so keep a single and simple fetch for now. set -x # this command may take a while so show it - git fetch --depth "$((PRlen+1))" "http://github.com/$gh_project" "pull/$pr_number/head" + git fetch --depth "$((PRlen+1))" "https://github.com/$gh_project" "pull/$pr_number/head" }