From 541edcfe9dcf3ee2e53352c6f6e0fb4b62f05637 Mon Sep 17 00:00:00 2001 From: "Valentin D. Pinkman" Date: Tue, 19 Nov 2024 15:52:06 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=92=9A=20(ci):=20Fix=20condition=20in=20p?= =?UTF-8?q?ull=5Frequest.yml?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/pull_request.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pull_request.yml b/.github/workflows/pull_request.yml index 04293c013..68bf29208 100644 --- a/.github/workflows/pull_request.yml +++ b/.github/workflows/pull_request.yml @@ -38,7 +38,7 @@ jobs: checks: name: Run health check and unit tests needs: [danger] - runs-on: ${{ github.event.pull_request.head.repo.fork == 'true' && 'ubuntu-latest' || 'ledgerhq-device-sdk' }} + runs-on: ${{ !github.event.pull_request.head.repo.fork && 'ledgerhq-device-sdk' || 'ubuntu-latest' }} steps: - uses: actions/checkout@v4