From 3f97588ab676c64b9a8b3192115e5acb4acff7a8 Mon Sep 17 00:00:00 2001 From: Athanasius Date: Tue, 28 Jul 2020 15:23:35 +0100 Subject: [PATCH] Try "fetch-depth: 0" on the extra checkouts --- .github/workflows/pr-checks.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/pr-checks.yml b/.github/workflows/pr-checks.yml index 32741e44..b1d86c13 100644 --- a/.github/workflows/pr-checks.yml +++ b/.github/workflows/pr-checks.yml @@ -24,10 +24,12 @@ jobs: uses: actions/checkout@v2 with: ref: ${{github.base_ref}} + fetch-depth: 0 - name: Checkout head of PR uses: actions/checkout@v2 with: ref: ${{github.head_ref}} + fetch-depth: 0 - name: Set up Python 3.7 uses: actions/setup-python@v2