From 52a917d48a669003fc91997073ffd981eaaf72bc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pawe=C5=82=20Gronowski?= Date: Wed, 5 Nov 2025 15:00:54 +0100 Subject: [PATCH] gha/bin-image: Fix dco running on non-v tags MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit bin-image workflow was failing for the new docker tags (`docker-v29.0.0-rc.2`) because it wasn't correctly picked up by the condition that should filter out tags. Signed-off-by: Paweł Gronowski --- .github/workflows/bin-image.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/bin-image.yml b/.github/workflows/bin-image.yml index 879da49523..47cf814081 100644 --- a/.github/workflows/bin-image.yml +++ b/.github/workflows/bin-image.yml @@ -37,7 +37,7 @@ env: jobs: validate-dco: - if: ${{ !startsWith(github.ref, 'refs/tags/v') }} + if: ${{ !startsWith(github.ref, 'refs/tags/') }} uses: ./.github/workflows/.dco.yml prepare: