From 97ea85c6138698b34c830f8484c4078c33dae7f0 Mon Sep 17 00:00:00 2001 From: Aviv Keller Date: Fri, 20 Mar 2026 07:17:47 -0400 Subject: [PATCH] fix(ci): skip playwright on Dependabot --- .github/workflows/playwright.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/playwright.yml b/.github/workflows/playwright.yml index c9ef1865e2000..ef1ac8b72319a 100644 --- a/.github/workflows/playwright.yml +++ b/.github/workflows/playwright.yml @@ -22,6 +22,8 @@ permissions: jobs: playwright: + # We want to skip on Dependabot PRs + if: startsWith(github.event.pull_request.head.ref, 'dependabot/') == false name: Playwright Tests runs-on: ubuntu-latest