From 6235290a89490193a66c22b433bcf7421e448f87 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vin=C3=ADcius=20Ferr=C3=A3o?= <2031761+viniciusferrao@users.noreply.github.com> Date: Thu, 23 Jul 2026 19:13:26 -0300 Subject: [PATCH] fix(ci): keep no-op backport runs green --- .github/workflows/backport.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/backport.yml b/.github/workflows/backport.yml index 5fc250718..b3e0cf919 100644 --- a/.github/workflows/backport.yml +++ b/.github/workflows/backport.yml @@ -91,5 +91,7 @@ jobs: }); } - name: Fail when a backport needs intervention - if: steps.backport.outputs.was_successful != 'true' + if: > + steps.backport.outputs.was_successful_by_target != '' && + steps.backport.outputs.was_successful != 'true' run: exit 1