From e83b8aa36db4bf93b2f9c2a7ab870f0ca98c9c15 Mon Sep 17 00:00:00 2001 From: Pierre Tachoire Date: Wed, 25 Mar 2026 16:55:45 +0100 Subject: [PATCH] ci: don't run wba test on PR wba test requires secrets read to run. But we don't want to exposes secrets on external contributions. So it's easier to run it only after PR merged. --- .github/workflows/e2e-test.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/e2e-test.yml b/.github/workflows/e2e-test.yml index a7651a9a..07f55cfe 100644 --- a/.github/workflows/e2e-test.yml +++ b/.github/workflows/e2e-test.yml @@ -179,6 +179,9 @@ jobs: runs-on: ubuntu-latest timeout-minutes: 5 + # Don't execute on PR + if: github.event_name != 'pull_request' + steps: - uses: actions/checkout@v6 with: