GitHub-action: fixed guard clause

This commit is contained in:
Peter Fichtner (pfichtner) 2026-02-05 21:08:46 +01:00
parent 44b4fd4337
commit 7081069861

View File

@ -9,7 +9,7 @@ jobs:
# we could check owner and name if: github.repository == 'emilybache/GildedRose-Refactoring-Kata' # we could check owner and name if: github.repository == 'emilybache/GildedRose-Refactoring-Kata'
# but checking owner is enough/better/more stable # but checking owner is enough/better/more stable
# Only run from the base repository # 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-slim runs-on: ubuntu-slim
permissions: permissions:
issues: write issues: write