diff --git a/.github/workflows/orchestrion.yml b/.github/workflows/orchestrion.yml index 496c5d57e4..e4f06f89ef 100644 --- a/.github/workflows/orchestrion.yml +++ b/.github/workflows/orchestrion.yml @@ -218,3 +218,17 @@ jobs: with: name: coverage-integration+${{ matrix.mode }}+go${{ steps.go.outputs.version }}+${{ runner.os }}+${{ runner.arch }} path: ${{ github.workspace }}/orchestrion/coverage/integration.out + + # This is a simple join point to make it easy to set up branch protection rules in GitHub. + integration-test-done: + name: Orchestrion Integration Tests + needs: integration-test + runs-on: ubuntu-latest + if: always() + steps: + - name: Success + if: needs.integration-test.result == 'success' + run: echo "Success!" + - name: Failure + if: needs.integration-test.result != 'success' + run: echo "Failure!" && exit 1