From 92ea8943dfddc5866cc5eb2a3da80f612c2dc7d1 Mon Sep 17 00:00:00 2001 From: Athanasius Date: Fri, 31 Jul 2020 12:21:32 +0100 Subject: [PATCH] Run 'Show github context' as first step --- .github/workflows/pr-checks.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/pr-checks.yml b/.github/workflows/pr-checks.yml index a3556326..c3de1a0d 100644 --- a/.github/workflows/pr-checks.yml +++ b/.github/workflows/pr-checks.yml @@ -16,25 +16,27 @@ jobs: runs-on: ubuntu-18.04 steps: + - name: Show github context + run: cat $GITHUB_EVENT_PATH + - name: Checkout commits # https://github.com/actions/checkout uses: actions/checkout@v2 with: fetch-depth: 0 + - name: Checkout base ref 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: Show github context - run: cat $GITHUB_EVENT_PATH - - name: Set up Python 3.7 uses: actions/setup-python@v2 with: