From b361eee35672f5b193f2ed01c36f12d80cf35493 Mon Sep 17 00:00:00 2001 From: e-belfer Date: Tue, 13 Aug 2024 12:02:09 -0400 Subject: [PATCH] Fix nesting --- .github/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index ec130f78b9..c31e6f2e7e 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -13,8 +13,8 @@ jobs: - name: Dump context run: echo '${{ toJSON(github) }}' - name: test-conditional - if: github.head.repo.fork == false - run: echo "I'm a fork!" + if: github.event.pull_request.head.repo.fork == false + run: echo "I'm not a fork!" # build-distribution: # name: Build catalystcoop.pudl distribution for PyPI # runs-on: ubuntu-latest