From bdc2d084a8e2fa67bc7a1d240775e1dbd4095b17 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Ber=C3=A1nek?= Date: Fri, 19 Jun 2026 15:04:10 +0200 Subject: [PATCH] Make failed job doc URL more visible --- src/bin/server/worker.rs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/bin/server/worker.rs b/src/bin/server/worker.rs index 6c7f0ef..456ab23 100644 --- a/src/bin/server/worker.rs +++ b/src/bin/server/worker.rs @@ -296,7 +296,11 @@ impl Worker { None => "A job".to_owned(), }; let trailer = match log_variables.doc_url { - Some(url) => format!("\nFor more information how to resolve CI failures of this job, visit this [link]({url})."), + Some(url) => format!( + r#" +> [!IMPORTANT] +> For more information how to resolve CI failures of this job, visit this [link]({url})."# + ), None => "".to_string(), }; let plain_enhanced = match job.log_enhanced_url() {