Merge pull request #38 from ds-pweick/chore/update-docs-for-irs-relea… #38
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: IRS DEV Cucumber Integration test execution | |
on: | |
workflow_dispatch: # Trigger manually | |
push: | |
branches: | |
- 'main' | |
paths-ignore: | |
- '**/*.md' | |
- '**/*.txt' | |
- 'charts/**' | |
- '.config/**' | |
- 'docs/**' | |
- 'local/**' | |
- 'irs-load-tests/**' | |
# Cancel previous Test executions if a new one is triggered. | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
trigger-integration-test: | |
uses: ./.github/workflows/xray-cucumber-integration.yaml | |
secrets: | |
regularUserApiKey: ${{ secrets.DEV_REGULAR_USER_API_KEY }} | |
adminUserApiKey: ${{ secrets.DEV_ADMIN_USER_API_KEY }} | |
jiraUser: ${{ secrets.ORG_IRS_JIRA_USERNAME }} | |
jiraPassword: ${{ secrets.ORG_IRS_JIRA_PASSWORD }} | |
with: | |
executionFilter: "not @Ignore and @INTEGRATION_TEST and @DEV" | |
exportFilter: "11349" |