diff --git a/.github/workflows/run-e2e-with-env.yml b/.github/workflows/run-e2e-with-env.yml index c124caa4e..96bdcc00f 100644 --- a/.github/workflows/run-e2e-with-env.yml +++ b/.github/workflows/run-e2e-with-env.yml @@ -7,6 +7,11 @@ on: url: description: 'Application URL' required: true + default: 'https://acadev.envalfresco.com' + playwright_e2e_host: + description: 'Playwright E2E host (e.g. https://acadev.envalfresco.com)' + required: false + default: 'http://localhost:4200' concurrency: group: ${{ github.workflow }}-${{ github.ref }} @@ -20,7 +25,7 @@ env: HR_USER_PASSWORD: ${{ secrets.HR_USER_PASSWORD }} SCREENSHOT_USERNAME: ${{ secrets.SCREENSHOT_USERNAME }} SCREENSHOT_PASSWORD: ${{ secrets.SCREENSHOT_PASSWORD}} - PLAYWRIGHT_E2E_HOST: ${{ inputs.url || secrets.PLAYWRIGHT_E2E_HOST }} + PLAYWRIGHT_E2E_HOST: ${{ inputs.playwright_e2e_host || inputs.url || secrets.PLAYWRIGHT_E2E_HOST }} GH_BUILD_NUMBER: ${{ github.run_id }} REPORT_PORTAL_URL: ${{ secrets.REPORT_PORTAL_URL }} REPORT_PORTAL_TOKEN: ${{ secrets.REPORT_PORTAL_TOKEN }}