Skip to content

Commit

Permalink
chore(testdata):[#226] add inputs for executionFilter and exportFilter
Browse files Browse the repository at this point in the history
  • Loading branch information
ds-jhartmann committed Jul 26, 2024
1 parent daba686 commit ad144ce
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions .github/workflows/cucumber-integration-test-INT-association.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -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' }}

0 comments on commit ad144ce

Please sign in to comment.