From 14481800e32196ade13db375853b2600ed30c846 Mon Sep 17 00:00:00 2001 From: Rob Bradford Date: Fri, 3 Jul 2026 16:00:35 +0100 Subject: [PATCH] build: Only run MSHV integration tests on MQ There is a single runner for this so avoid overloading/queueing by running only on MQ. Signed-off-by: Rob Bradford --- .github/workflows/ci.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 4ea4cfb31..790e2d6ca 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -716,7 +716,7 @@ jobs: name: integration-mshv-x86-64 needs: [preflight, dco, quality, build] if: >- - needs.preflight.outputs.full == 'true' && needs.dco.result == 'success' && needs.quality.result == 'success' && needs.build.result == 'success' + github.event_name == 'merge_group' && needs.preflight.outputs.full == 'true' && needs.dco.result == 'success' && needs.quality.result == 'success' && needs.build.result == 'success' timeout-minutes: 35 runs-on: mshv steps: