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.
This commit is contained in:
Pierre Tachoire
2026-03-25 16:55:45 +01:00
parent 179f9c1169
commit e83b8aa36d

View File

@@ -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: