From baafe08d6ecd4be58fdea99a3b229e70a6e1f35c Mon Sep 17 00:00:00 2001 From: codecalm Date: Wed, 26 Feb 2025 18:38:27 +0100 Subject: [PATCH] Add condition to skip tests for draft pull requests in Playwright workflow --- .github/workflows/playwright.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/playwright.yml b/.github/workflows/playwright.yml index bdd4b5bd1..51a5d1031 100644 --- a/.github/workflows/playwright.yml +++ b/.github/workflows/playwright.yml @@ -19,6 +19,7 @@ jobs: test: timeout-minutes: 60 runs-on: ubuntu-latest + if: github.event.pull_request.draft == false steps: - name: Clone repository uses: actions/checkout@v4