From 49467ea34c5ebb70859465e9040eeb1a81e9a3e0 Mon Sep 17 00:00:00 2001 From: BrickheadJohnny Date: Tue, 23 Jul 2024 11:32:48 +0200 Subject: [PATCH] fix(gh action): negate `contains` --- .github/workflows/playwright.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/playwright.yml b/.github/workflows/playwright.yml index 9cc6c1e521..26b5e4900e 100644 --- a/.github/workflows/playwright.yml +++ b/.github/workflows/playwright.yml @@ -3,7 +3,7 @@ on: deployment_status: jobs: test: - if: github.event_name == 'deployment_status' && github.event.deployment_status.state == 'success' && contains(github.event.deployment_status.deployment_url, 'guild-xyz-storybook') + if: github.event_name == 'deployment_status' && github.event.deployment_status.state == 'success' && !contains(github.event.deployment_status.deployment_url, 'guild-xyz-storybook') timeout-minutes: 60 runs-on: ubuntu-latest steps: