Skip to content

Commit

Permalink
chore(cucumber):[#226] remove execution trigger for pull requests, ad…
Browse files Browse the repository at this point in the history
…d executionFilter as input
  • Loading branch information
ds-jhartmann committed Jul 26, 2024
1 parent 0129fad commit 524231e
Showing 1 changed file with 6 additions and 9 deletions.
15 changes: 6 additions & 9 deletions .github/workflows/cucumber-integration-test-UMBRELLA.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,11 @@ name: IRS Umbrella Cucumber Integration test execution

on:
workflow_dispatch: # Trigger manually
inputs:
executionFilter:
description: 'Execution filter'
required: false
default: '!Ignore & !INACTIVE & INTEGRATION_TEST & UMBRELLA'
push:
branches:
- 'main'
Expand All @@ -31,14 +36,6 @@ on:
- 'docs/**'
- 'local/**'
- 'irs-load-tests/**'
pull_request:
paths-ignore:
- '**/*.md'
- '**/*.txt'
- '.config/**'
- 'docs/**'
- 'local/**'
- 'CHANGELOG.md'

# Cancel previous Test executions if a new one is triggered.
concurrency:
Expand All @@ -61,7 +58,7 @@ jobs:
regularUserApiKey: "password"
adminUserApiKey: "password"
cucumberPublishToken: ${{ secrets.IRS_CUCUMBER_PUBLISH_TOKEN }}
executionFilter: "!Ignore & !INACTIVE & INTEGRATION_TEST & UMBRELLA"
executionFilter: ${{ github.event.inputs.executionFilter || '!Ignore & !INACTIVE & INTEGRATION_TEST & UMBRELLA' }}

- name: Attach logs
if: always() && steps.setup-env.outcome == 'success'
Expand Down

0 comments on commit 524231e

Please sign in to comment.