From fbe0aa9db6e7fa12075d86e62e1d13e2e729523e Mon Sep 17 00:00:00 2001 From: "Peter Fichtner (pfichtner)" Date: Thu, 5 Feb 2026 21:08:46 +0100 Subject: [PATCH] GitHub-action: fixed guard clause --- .github/workflows/pr-validation.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pr-validation.yml b/.github/workflows/pr-validation.yml index 33843ae2..20be5d14 100644 --- a/.github/workflows/pr-validation.yml +++ b/.github/workflows/pr-validation.yml @@ -9,7 +9,7 @@ jobs: # we could check owner and name if: github.repository == 'emilybache/GildedRose-Refactoring-Kata' # but checking owner is enough/better/more stable # Only run from the base repository - if: github.repository_owner == 'emilybache' || env.FORK_TESTING == 'true' + if: ${{ github.repository_owner == 'emilybache' || env.FORK_TESTING == 'true' }} runs-on: ubuntu-latest permissions: issues: write