diff --git a/.github/workflows/full-integration-tests.yaml b/.github/workflows/full-integration-tests.yaml index d9beb275801..7c74c4ff05e 100644 --- a/.github/workflows/full-integration-tests.yaml +++ b/.github/workflows/full-integration-tests.yaml @@ -1,7 +1,12 @@ name: Integration Tests - Full Test Suite run-name: ${{ github.actor }} is running Full Integration Test Suite on: - workflow_dispatch: {} + workflow_dispatch: + inputs: + test_directory: + description: 'Test directory to run integration tests' + type: string + required: false jobs: call-workflow: @@ -11,3 +16,4 @@ jobs: with: repository: ${{ github.repository }} head: ${{ github.sha }} + test_directory: ${{ github.event.inputs.test_directory }}