diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml index e4df91fe6c2..810787b36ad 100644 --- a/.github/workflows/integration.yml +++ b/.github/workflows/integration.yml @@ -19,6 +19,7 @@ on: - converted_to_draft - ready_for_review - labeled + - unlabeled - auto_merge_enabled - auto_merge_disabled merge_group: @@ -253,3 +254,22 @@ jobs: timeout-minutes: 4 with: datadog-token: ${{ secrets.DATADOG_API_KEY }} + + integration-test-result: + needs: + - pre_check + - getting-started + - deployment-test + - test-docker-build + if: needs.pre_check.outputs.should_run == 'true' && (success() || failure() || cancelled()) + runs-on: ubuntu-latest + steps: + - name: Check job results + shell: bash + run: | + cat <