Skip to content

E2E: Automation suite #20

E2E: Automation suite

E2E: Automation suite #20

name: "E2E: Automation suite"
on:
workflow_dispatch:
inputs:
test_suite:
description: 'Select test suite to run'
default: 'regression'
required: true
type: choice
options:
- regression
- sanity
- smoke
permissions:
contents: read
checks: write
statuses: write
jobs:
build-and-test:
uses: ./.github/workflows/e2e-run.yml
with:
suite_name: ${{ github.event.inputs.test_suite }}
sha: ${{ github.sha }}