From a16c21e8004ffe636731498942fd73c748347f1d Mon Sep 17 00:00:00 2001 From: Vlad Podorozhnyi Date: Fri, 22 Dec 2023 13:51:31 +0100 Subject: [PATCH] Add optional param to run tests over specific directory only. --- .github/workflows/full-integration-tests.yaml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) 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 }}