From ad144ce57d128fcc94f98b1f6890a78a7c6b6a46 Mon Sep 17 00:00:00 2001 From: jhartmann Date: Fri, 26 Jul 2024 09:21:35 +0200 Subject: [PATCH] chore(testdata):[#226] add inputs for executionFilter and exportFilter --- .../cucumber-integration-test-INT-association.yaml | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/.github/workflows/cucumber-integration-test-INT-association.yaml b/.github/workflows/cucumber-integration-test-INT-association.yaml index 3a12d4639..c5f30fac2 100644 --- a/.github/workflows/cucumber-integration-test-INT-association.yaml +++ b/.github/workflows/cucumber-integration-test-INT-association.yaml @@ -2,6 +2,15 @@ name: IRS Association INT Cucumber Integration test execution on: workflow_dispatch: # Trigger manually + inputs: + executionFilter: + description: 'Execution filter' + required: false + default: '!Ignore & !INACTIVE & INTEGRATION_TEST & DEV' + exportFilter: + description: 'Jira export filter' + required: false + default: '10001' # Cancel previous Test executions if a new one is triggered. concurrency: @@ -55,7 +64,7 @@ jobs: jiraUser: ${{ secrets.jiraUser }} jiraPassword: ${{ secrets.jiraPassword }} with: - executionFilter: "!Ignore& !INACTIVE & IRS & INT & POLICY_STORE" + executionFilter: ${{ github.event.inputs.executionFilter || '!Ignore& !INACTIVE & IRS & INT & POLICY_STORE' }} # JIRA filter 10001: project = CXTM AND labels = "INT" AND labels = "IRS" AND status = Ready AND testType = Cucumber - exportFilter: 10001 + exportFilter: ${{ github.event.inputs.exportFilter || '10001' }}