Skip to content

Workflow Dispatch

Workflow Dispatch #8

Workflow file for this run

name: Dispatch Tests
on:
workflow_dispatch:
permissions:
checks: write
contents: write
pull-requests: write
env:
BRANCH_NAME: ${{ github.head_ref || github.ref_name }}
jobs:
sanity-test:
name: Sanity Test
uses: ./.github/workflows/sanity-test.yml
with:
REF: ${{ github.ref }}
BRANCH_NAME: $BRANCH_NAME
smoke-test:
name: Smoke Test
uses: ./.github/workflows/smoke-test.yml
with:
REF: ${{ github.ref }}
BRANCH_NAME: $BRANCH_NAME
integration-test:
name: Integration Test
uses: ./.github/workflows/integration-test.yml
with:
REF: ${{ github.ref }}
BRANCH_NAME: $BRANCH_NAME