From db52ea33073c3e251ef8c4642aed489ed0814aa6 Mon Sep 17 00:00:00 2001 From: Seungpyo Hong Date: Mon, 22 Jun 2026 14:41:38 +0900 Subject: [PATCH 1/2] ci: post /verify report as a markdown table (score --format md) --- .github/workflows/techapi-verify-comment.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/techapi-verify-comment.yml b/.github/workflows/techapi-verify-comment.yml index 5a83006..b0ae422 100644 --- a/.github/workflows/techapi-verify-comment.yml +++ b/.github/workflows/techapi-verify-comment.yml @@ -54,10 +54,12 @@ jobs: { echo 'report<> "$GITHUB_OUTPUT" @@ -80,9 +82,7 @@ jobs: '', `Requested by @${by} via \`/verify\` · scored by \`app.verify\`, posted by **TechEngineBot**. Informational only — the structural gate (\`app.validate\`) is separate.`, '', - '```text', report, - '```', ].join('\n'); const owner = 'GetTechAPI'; const repo = 'TechAPI'; From 2a1b37b57309b4708b82435c84164f4256833ee5 Mon Sep 17 00:00:00 2001 From: Seungpyo Hong Date: Mon, 22 Jun 2026 14:41:39 +0900 Subject: [PATCH 2/2] ci(weekly-refresh): render Tier 0 verification as a markdown table --- .github/workflows/weekly-refresh.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/weekly-refresh.yml b/.github/workflows/weekly-refresh.yml index 613a3bb..6598682 100644 --- a/.github/workflows/weekly-refresh.yml +++ b/.github/workflows/weekly-refresh.yml @@ -107,7 +107,7 @@ jobs: - name: Verification band report (Tier 0) run: | cd techapi - python -m app.verify score --no-cache > ../verify-report.txt 2>&1 || true + python -m app.verify score --no-cache --format md > ../verify-report.md 2>&1 || true # --- 3. Static dump → site/public (what the Astro site fetches at runtime) --- - name: Generate static dump @@ -127,9 +127,7 @@ jobs: echo echo "## Verification (Tier 0 existence/trust)" echo - echo '```text' - cat verify-report.txt 2>/dev/null || echo "(verifier unavailable)" - echo '```' + cat verify-report.md 2>/dev/null || echo "_verifier unavailable._" echo echo "## Enrichment summaries" for f in enrich-*.md; do