Skip to content

Commit

Permalink
adding result collector job
Browse files Browse the repository at this point in the history
  • Loading branch information
girazoki committed Feb 3, 2025
1 parent 207f40b commit 28614e8
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -702,6 +702,19 @@ jobs:
uses: ./.github/workflow-templates/zombienet-tests
with:
test_name: ${{ matrix.test_name }}
zombienet-merge-queue-results:
if: ${{ always() }}
runs-on: ubuntu-latest
name: Results for zombienet-tests-merge-queue
needs: [zombienet-tests-merge-queue]
steps:
- run: |
result="${{ needs.zombienet-tests-merge-queue.result}}"
if [[ $result == "success" || $result == "skipped" ]]; then
exit 0
else
exit 1
fi
zombienet-tests-merge-queue-bridge-e2e:
if: ${{ github.event_name == 'merge_group' }}
runs-on: self-hosted
Expand Down

0 comments on commit 28614e8

Please sign in to comment.