Skip to content

Commit

Permalink
ci: trigger liquidation tests with emerynet
Browse files Browse the repository at this point in the history
  • Loading branch information
rabi-siddique committed Aug 21, 2024
1 parent 2a9fbed commit f224b52
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/liquidation-reconstitution.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ concurrency:
jobs:
run-e2e:
if: >-
github.event_name != 'pull_request' || github.event_name == 'schedule' ||
github.event_name == 'schedule' ||
github.event_name == 'workflow_dispatch' ||
contains(github.event.pull_request.labels.*.name, 'liquidation-reconstitution-testing')
uses: ./.github/workflows/reusable-workflow.yml
Expand All @@ -56,7 +56,7 @@ jobs:
docker compose -f test/e2e/docker-compose-reconstitution.yml \
--profile synpress up --build \
--exit-code-from synpress
is_emerynet_test: ${{ inputs.network == 'emerynet' }}
is_emerynet_test: ${{ inputs.network == 'emerynet' || contains(github.event.pull_request.labels.*.name, 'emerynet') }}
user1_mnemonic: ${{ inputs.user1_mnemonic }}
user1_address: ${{ inputs.user1_address }}
bidder_mnemonic: ${{ inputs.bidder_mnemonic }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/liquidation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ concurrency:
jobs:
run-e2e:
if: >-
github.event_name != 'pull_request' || github.event_name == 'schedule' ||
github.event_name == 'schedule' ||
github.event_name == 'workflow_dispatch' ||
contains(github.event.pull_request.labels.*.name, 'liquidation-testing')
uses: ./.github/workflows/reusable-workflow.yml
Expand All @@ -56,7 +56,7 @@ jobs:
docker compose -f test/e2e/docker-compose-liquidation.yml \
--profile synpress up --build \
--exit-code-from synpress
is_emerynet_test: ${{ inputs.network == 'emerynet' }}
is_emerynet_test: ${{ inputs.network == 'emerynet' || contains(github.event.pull_request.labels.*.name, 'emerynet') }}
user1_mnemonic: ${{ inputs.user1_mnemonic }}
user1_address: ${{ inputs.user1_address }}
bidder_mnemonic: ${{ inputs.bidder_mnemonic }}
Expand Down

0 comments on commit f224b52

Please sign in to comment.