diff --git a/.github/workflows/e2e-fulltests-ci.yml b/.github/workflows/e2e-fulltests-ci.yml index 19e40dbc81..b20cfa3ad0 100644 --- a/.github/workflows/e2e-fulltests-ci.yml +++ b/.github/workflows/e2e-fulltests-ci.yml @@ -39,13 +39,13 @@ on: - NONE default: NONE RUN_CYPRESS: - type: boolean + type: string description: Enable Cypress run - default: true + default: "true" RUN_PLAYWRIGHT: - type: boolean + type: string description: Enable Playwright run - default: true + default: "true" concurrency: group: "${{ github.workflow }}-${{ inputs.REPORT_TYPE }}-${{ inputs.PR_NUMBER || inputs.ref }}-${{ inputs.MM_ENV }}" @@ -219,8 +219,8 @@ jobs: STATUS_CHECK_CONTEXT: "${{steps.generate.outputs.status_check_context}}" WORKFLOW_RUN_URL: "${{steps.generate.outputs.WORKFLOW_RUN_URL}}" CYCLE_URL: "${{steps.generate.outputs.CYCLE_URL}}" - RUN_CYPRESS: "${{inputs.RUN_CYPRESS || ''}}" - RUN_PLAYWRIGHT: "${{inputs.RUN_PLAYWRIGHT || ''}}" + RUN_CYPRESS: "${{inputs.RUN_CYPRESS == 'true' || ''}}" + RUN_PLAYWRIGHT: "${{inputs.RUN_PLAYWRIGHT == 'true' || ''}}" run: | if [ -n "$PR_NUMBER" ]; then gh issue -R "${{ github.repository }}" comment "$PR_NUMBER" --body-file - <