From b70c1a439d4c5baae0509776e27b0ffc2712ce02 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pawe=C5=82=20Gronowski?= Date: Tue, 16 Sep 2025 11:50:09 +0200 Subject: [PATCH] gha: add missing dependency to Windows workflows MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The Windows test workflow jobs were missing the dependency on the `validate-dco` job so they ran regardless whether the DCO check passed or not. Signed-off-by: Paweł Gronowski --- .github/workflows/windows-2022.yml | 1 + .github/workflows/windows-2025.yml | 1 + 2 files changed, 2 insertions(+) diff --git a/.github/workflows/windows-2022.yml b/.github/workflows/windows-2022.yml index b74a4bffec..f3c4ccb0c5 100644 --- a/.github/workflows/windows-2022.yml +++ b/.github/workflows/windows-2022.yml @@ -23,6 +23,7 @@ jobs: uses: ./.github/workflows/.dco.yml run: + needs: validate-dco if: ${{ github.event_name != 'pull_request' || !contains(github.event.pull_request.labels.*.name, 'ci/validate-only') }} uses: ./.github/workflows/.windows.yml secrets: inherit diff --git a/.github/workflows/windows-2025.yml b/.github/workflows/windows-2025.yml index 436b48fa13..db693b41dd 100644 --- a/.github/workflows/windows-2025.yml +++ b/.github/workflows/windows-2025.yml @@ -27,6 +27,7 @@ jobs: uses: ./.github/workflows/.dco.yml run: + needs: validate-dco if: ${{ github.event_name != 'pull_request' || !contains(github.event.pull_request.labels.*.name, 'ci/validate-only') }} uses: ./.github/workflows/.windows.yml secrets: inherit