Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/actions/acceptance-tests/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,15 +25,15 @@ runs:
steps:

- name: Run component tests
if: ${{ inputs.testType != 'e2e' }}
if: ${{ inputs.testType == 'component' }}
uses: ./.github/actions/acceptance-tests-component
with:
testType: ${{ inputs.testType }}
targetEnvironment: ${{ inputs.targetEnvironment }}
targetComponent: ${{ inputs.targetComponent }}

- name: Run e2e tests
if: ${{ inputs.testType == 'e2e' && inputs.targetEnvironment == 'main' }}
if: ${{ inputs.testType == 'e2e' }}
uses: ./.github/actions/acceptance-tests-e2e
with:
targetEnvironment: ${{ inputs.targetEnvironment }}
3 changes: 2 additions & 1 deletion .github/actions/build-proxies/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -118,4 +118,5 @@ runs:
--apimEnvironment "${{ env.APIM_ENV }}" \
--boundedContext "notify-supplier" \
--targetDomain "$TARGET_DOMAIN" \
--version "${{ inputs.version }}"
--version "${{ inputs.version }}" \
--internalRef "feature/CCM-17012" # TO BE REMOVED - used to trigger workflow until internal branch merges
1 change: 1 addition & 0 deletions .github/workflows/deploy-dynamic-env-proxy.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# Test
name: Deploy dynamic PR environment proxy
run-name: Deploy proxy for PR environment on internal-dev by @${{ github.actor }}

Expand Down
Loading