From 7c00ddcebfe0e8335199545a08eb8f3498544112 Mon Sep 17 00:00:00 2001 From: Athanasius Date: Fri, 31 Jul 2020 12:40:38 +0100 Subject: [PATCH] We want github.context for the full info --- .github/workflows/pr-checks.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pr-checks.yml b/.github/workflows/pr-checks.yml index a71f3ee2..1a3d672e 100644 --- a/.github/workflows/pr-checks.yml +++ b/.github/workflows/pr-checks.yml @@ -32,7 +32,7 @@ jobs: # https://github.com/actions/checkout uses: actions/checkout@v2 with: - repository: ${{github.head.repo.full_name}} + repository: ${{github.event.head.repo.full_name}} fetch-depth: 0 #################################################################### @@ -55,7 +55,7 @@ jobs: #################################################################### - name: Lint with flake8 env: - BASE_REPO: ${{github.base.repo.full_name}} + BASE_REPO: ${{github.event.base.repo.full_name}} BASE_REF: ${{github.base_ref}} run: |