Skip to content

Commit 8e28674

Browse files
Fix e2e test condition to use string comparison for run_e2e_tests input
1 parent 15cd093 commit 8e28674

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/deploy-Parameterized.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -508,7 +508,7 @@ jobs:
508508
509509
e2e-test:
510510
# Run e2e tests for automatic triggers, when manually enabled, or when existing webapp URL is provided
511-
if: always() && (github.event_name != 'workflow_dispatch' || github.event.inputs.run_e2e_tests == true || github.event.inputs.run_e2e_tests == null || github.event.inputs.existing_webapp_url != '')
511+
if: always() && (github.event_name != 'workflow_dispatch' || github.event.inputs.run_e2e_tests == 'true' || github.event.inputs.run_e2e_tests == null || github.event.inputs.existing_webapp_url != '')
512512
needs: [deploy]
513513
uses: ./.github/workflows/test-automation.yml
514514
with:

0 commit comments

Comments
 (0)