diff --git a/.github/workflows/ci-app-e2e-tests.yml b/.github/workflows/ci-app-e2e-tests.yml new file mode 100644 index 0000000..2ba1cee --- /dev/null +++ b/.github/workflows/ci-app-e2e-tests.yml @@ -0,0 +1,24 @@ +name: CI app E2E tests on main + +on: + push: + branches: + - main + workflow_dispatch: + inputs: + service_endpoint: + description: "The service endpoint URL for the E2E tests" + required: true + type: string + app_name: + description: "The application name" + required: true + type: string + +jobs: + call-e2e-tests: + name: " " # GitHub UI is noisy when calling reusable workflows, so use whitespace for name to reduce noise + uses: ./.github/workflows/e2e-tests.yml + with: + service_endpoint: ${{ inputs.service_endpoint || 'http://app-dev-2093346449.us-east-1.elb.amazonaws.com' }} + app_name: ${{ inputs.app_name || 'app' }}