From 36ceefefdfa4b11c5135fd4d97294820e5b8e48f Mon Sep 17 00:00:00 2001 From: Cristian Le Date: Sep 09 2025 16:09:20 +0000 Subject: Fix wrong cancel job conditional --- diff --git a/roles/fedpkg-build-cleanup/tasks/main.yaml b/roles/fedpkg-build-cleanup/tasks/main.yaml index d576cd6..3bdf30e 100644 --- a/roles/fedpkg-build-cleanup/tasks/main.yaml +++ b/roles/fedpkg-build-cleanup/tasks/main.yaml @@ -21,4 +21,4 @@ # Do not run this if the job was successful or it timed-out (koji_task_returned was not reached) when: > task_id is defined and - not (zuul_success | bool or koji_task_returned is not defined) + not (zuul_success | bool or koji_task_returned is defined)