From 86f67f4e089ee93ace999f3b523dd1c9cfaf6860 Mon Sep 17 00:00:00 2001 From: Actionless Loveless Date: Sun, 20 Mar 2022 18:56:13 +0100 Subject: [PATCH] fix(gh-actions): s/git_url/clone_url/g (#3593) --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index ea8a891b4..228536aca 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -352,7 +352,7 @@ jobs: - name: Test previous commits if: matrix.test_prev_commits && github.event_name == 'pull_request' run: | - git remote add fork "${{ github.event.pull_request.head.repo.git_url }}" + git remote add fork "${{ github.event.pull_request.head.repo.clone_url }}" # `actions/checkout` creates a shallow repo (`--depth 1`) by default, # which is fine for everything up until now. But we need individual commits now. # And we only want to unshallow now, to not slow down the checkout for other jobs.