diff --git a/atvm/docs/automation/status-template.md b/atvm/docs/automation/status-template.md index 1267b7f..33b9731 100644 --- a/atvm/docs/automation/status-template.md +++ b/atvm/docs/automation/status-template.md @@ -21,7 +21,7 @@ Use this as the default ATVM automation run-status template for: **HOSTS:** -| Host | Kernel | Status | Detail | +| Host | Kernel | Status | Detail (For failures, see below for more details) | |---|---|---|---| | | | ✅ PASS | completed | | | | ⚠️ FAIL | | diff --git a/atvm/watcher-service/atvm_run_watcher.py b/atvm/watcher-service/atvm_run_watcher.py index b55f907..9734509 100644 --- a/atvm/watcher-service/atvm_run_watcher.py +++ b/atvm/watcher-service/atvm_run_watcher.py @@ -1247,7 +1247,7 @@ def build_status_markdown( f"{host.host} failure excerpt: `{compact_failure_detail(failure_excerpt_source, limit=420)}`" ) - host_lines = ["| Host | Kernel | Status | Detail |", "| --- | --- | --- | --- |"] + host_lines = ["| Host | Kernel | Status | Detail (For failures, see below for more details) |", "| --- | --- | --- | --- |"] for host in ordered_hosts: icon = { "PASS": "✅ PASS",