There was an error while loading. Please reload this page.
1 parent 73261ef commit ff8c660Copy full SHA for ff8c660
1 file changed
.github/workflows/build-enterprise.yml
@@ -52,12 +52,9 @@ jobs:
52
53
playwright-e2e-enterprise:
54
# Run on PRs only if relevant files changed; always run on push-to-main,
55
- # cron, and manual dispatch. Auto-skipped when the secret is missing.
56
- if: |
57
- secrets.PREMIUM_KEY_ENTERPRISE != '' && (
58
- github.event_name != 'pull_request' ||
59
- needs.files-changed.outputs.proprietary == 'true'
60
- )
+ # cron, and manual dispatch. Fork PRs without the secret will fail at
+ # the compose step (PREMIUM_KEY empty) — that's intentional, not silent.
+ if: github.event_name != 'pull_request' || needs.files-changed.outputs.proprietary == 'true'
61
needs: files-changed
62
runs-on: ubuntu-latest
63
timeout-minutes: 45
0 commit comments