From 60d7c3f32f2bad916761d727325497d3e6edbad0 Mon Sep 17 00:00:00 2001 From: Eric Engestrom Date: Tue, 10 Feb 2026 18:57:37 +0100 Subject: [PATCH] marge/pipeline_message: print details for any pipeline that hasn't succeeded Not just the ones that have failed. Again, this now includes "still running past timeout" and "blocked on a manual job". Part-of: --- .marge/hooks/pipeline_message.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.marge/hooks/pipeline_message.py b/.marge/hooks/pipeline_message.py index 7b7b2765f29..67b0d16b0b3 100755 --- a/.marge/hooks/pipeline_message.py +++ b/.marge/hooks/pipeline_message.py @@ -352,7 +352,7 @@ async def main(pipeline_id: str, project_id: str = "176") -> str: session, project_id, pipeline_id ) logging.debug(f"Pipeline status: {pipeline_status}") - if pipeline_status != "failed": + if pipeline_status == "success": return message jobs = await get_jobs_for_pipeline(session, project_id, pipeline_id)