Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion src/bin/server/worker.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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() {
Expand Down
Loading