Antithesis Manual Run #17
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Antithesis Manual Run | |
on: | |
workflow_dispatch: | |
inputs: | |
test-duration: | |
description: 'The duration that the antithesis test runs' | |
type: string | |
required: false | |
default: '0.5' | |
jobs: | |
build: | |
permissions: | |
id-token: write # This is required for requesting the JWT | |
contents: write # This is required for actions/checkout (read) and publishing tags (write) | |
uses: ./.github/workflows/github-e2e.yaml | |
with: | |
test-duration: ${{ inputs.test-duration }} | |
secrets: inherit |