From 7f873568322995de02ac442144e94c7571bdeb91 Mon Sep 17 00:00:00 2001 From: "anthony.wen" Date: Tue, 31 Mar 2026 11:07:17 -0400 Subject: [PATCH] Clarify ATVM host detail heading for failure notes --- atvm/docs/automation/status-template.md | 2 +- atvm/watcher-service/atvm_run_watcher.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/atvm/docs/automation/status-template.md b/atvm/docs/automation/status-template.md index 33b9731..87bc2db 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 (For failures, see below for more details) | +| Host | Kernel | Status | Detail (For failures, see Failure Notes section 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 9734509..bf98993 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 (For failures, see below for more details) |", "| --- | --- | --- | --- |"] + host_lines = ["| Host | Kernel | Status | Detail (For failures, see Failure Notes section below for more details) |", "| --- | --- | --- | --- |"] for host in ordered_hosts: icon = { "PASS": "✅ PASS",