From d6104651d6a0fd903ee79be277a18f93b9460fe3 Mon Sep 17 00:00:00 2001 From: Douglas Raillard Date: Fri, 27 Sep 2024 13:55:39 +0100 Subject: [PATCH] lisa: Use git protocol instead of HTTP when cloning gitlab Gitlab seems to have some troubles with HTTPS clones redirecting to sign in page, so use git protocol instead. --- .github/workflows/gitlab-mirror.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/gitlab-mirror.yml b/.github/workflows/gitlab-mirror.yml index 80dd8b960..ad74b668b 100644 --- a/.github/workflows/gitlab-mirror.yml +++ b/.github/workflows/gitlab-mirror.yml @@ -31,7 +31,7 @@ jobs: set -x cd target-repo || exit 1 - git remote add gitlab https://git.gitlab.arm.com/tooling/lisa.git + git remote add gitlab git@git.gitlab.arm.com:tooling/lisa.git function mirror() { local ref=$1 -- GitLab