Skip to content
Merged
Show file tree
Hide file tree
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
8 changes: 4 additions & 4 deletions .github/workflows/techapi-verify-comment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,10 +54,12 @@ jobs:
{
echo 'report<<VERIFY_EOF'
echo "### Changed records in this PR"
python -m app.verify score --changed --no-cache || echo "(app.verify unavailable on this ref)"
echo ""
python -m app.verify score --changed --no-cache --format md || echo "_app.verify unavailable on this ref._"
echo ""
echo "### Full-dataset baseline"
python -m app.verify score --no-cache || true
echo ""
python -m app.verify score --no-cache --format md || true
echo VERIFY_EOF
} >> "$GITHUB_OUTPUT"

Expand All @@ -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';
Expand Down
6 changes: 2 additions & 4 deletions .github/workflows/weekly-refresh.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down
Loading