Skip to content

Commit 98a5018

Browse files
authored
fix: ignore -dev deploys for playwright testing (#6355)
1 parent 5032b4e commit 98a5018

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

.github/workflows/e2e.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,7 @@ jobs:
1212
if: |
1313
github.event_name == 'workflow_dispatch' ||
1414
(github.event.deployment_status.state == 'success' &&
15-
contains(github.event.deployment.environment, 'fern-dashboard') &&
16-
!contains(github.event.deployment.environment, 'Production'))
15+
github.event.deployment.environment == 'Preview – fern-dashboard')
1716
1817
steps:
1918
- name: Checkout

0 commit comments

Comments
 (0)