From f83e4761165698efe938ef448161a81dbb1f1bc4 Mon Sep 17 00:00:00 2001 From: nvsekkin Date: Thu, 30 Jul 2026 16:40:41 -0700 Subject: [PATCH] Gate legacy kitless rendering on PRs Preserve complete test execution while allowing legacy failures to produce a failing check; keep OVStage PR and manual runs non-blocking. --- .github/workflows/build.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 030b7e9b0b2..838e1ff82d4 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -748,7 +748,7 @@ jobs: name: "rendering-correctness-kitless (${{ matrix.variant }})" runs-on: [self-hosted, gpu] timeout-minutes: 120 - continue-on-error: ${{ github.event_name == 'pull_request' || github.event_name == 'workflow_dispatch' }} + continue-on-error: ${{ github.event_name == 'workflow_dispatch' || (github.event_name == 'pull_request' && matrix.variant == 'ovstage') }} needs: [build, config] if: needs.build.result == 'success' strategy: