[ACS-10960] allow to run e2e with local or custom url (#5022)

* [ACS-10960] allow to run e2e with local or custom url

* [ACS-10960] allow to run e2e with local or custom url
This commit is contained in:
Akash Rathod
2026-02-02 08:44:42 +05:30
committed by GitHub
parent 2019f151ed
commit 13c8002b1c
+6 -1
View File
@@ -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 }}