You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: .github/workflows/vercel-e2e.yml
+17-2
Original file line number
Diff line number
Diff line change
@@ -4,9 +4,17 @@
4
4
name: Vercel E2E
5
5
on:
6
6
deployment_status:
7
+
workflow_dispatch:
8
+
inputs:
9
+
deploymentUrl:
10
+
description: 'The deployment URL to test with'
11
+
required: true
12
+
prNumber:
13
+
description: 'Pull request number (optional)'
14
+
required: false
7
15
jobs:
8
16
vercel-e2e:
9
-
if: github.event_name == 'deployment_status' && github.event.deployment_status.state == 'success' && contains(github.event.deployment_status.target_url, 'vercel-demo-wix-cms') # TODO: change to your site name
17
+
if: github.event.inputs.deploymentUrl || (github.event_name == 'deployment_status' && github.event.deployment_status.state == 'success' && contains(github.event.deployment_status.target_url, 'vercel-demo-wix-cms')) # TODO: change to your site name
0 commit comments