From 55136de78b7ef985e4a61f6897806e89a3113196 Mon Sep 17 00:00:00 2001 From: Vladimir Date: Tue, 5 May 2026 11:16:22 +0100 Subject: [PATCH] ci: add changed to `needs` of `merge-reports` (#10274) --- .github/workflows/ci.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 85dc8ba1b..7162bdcb4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -266,8 +266,10 @@ jobs: retention-days: 30 merge-reports: - needs: test - if: ${{ !cancelled() }} + needs: + - test + - changed + if: needs.changed.outputs.should_skip != 'true' && !cancelled() runs-on: ubuntu-latest name: Merge Reports timeout-minutes: 10 -- 2.51.2