Skip to content

Commit

Permalink
chore: support ondemand e2e test runs. (#1221)
Browse files Browse the repository at this point in the history
  • Loading branch information
jgadling authored Oct 7, 2024
1 parent d852ca4 commit 5eb53f0
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/ondemand-e2e-tets.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Run e2e tests on demand

on:
# This means we can trigger this action via the GitHub Actions UI!
workflow_dispatch:
inputs:
environment:
description: "Run e2e tests on staging or prod?"
required: true
default: "staging"

jobs:
e2e-test:
name: E2E Tests
uses: ./.github/workflows/frontend-e2e-tests.yml
secrets: inherit
with:
environment: ${{ github.event.inputs.environment }}

0 comments on commit 5eb53f0

Please sign in to comment.