ci(weekly-refresh): fold Tier 0 verification band report into the weekly PR#27
Merged
Conversation
…kly PR After the integrity gate, run TechAPI's app.verify score over the full dataset and include the green/yellow/red band histogram in the weekly refresh PR body (under a new ## Verification section). Informational, never gates the run; app.verify is a stdlib-only TechAPI module run from the TechAPI checkout.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What
The weekly refresh (
weekly-refresh.yml, Mondays 06:00 UTC) already runs the integrity gate (app.validate+integrity_check.py --strict) over the full TechAPI dataset and opens a dated PR authored by TechEngineBot. This adds the Tier 0 existence/trust verification to that same run so the dataset's verification health rides along in the weekly PR — owned by the bot, no extra workflow.Changes
python -m app.verify scorefrom the TechAPI checkout and captures the green/yellow/red band histogram.## Verification (Tier 0 existence/trust)section with that histogram.app.verifyis a stdlib-only TechAPI module (added in TechAPI #52); it's run from thetechapi/checkout, reads the data tree there, and never fails the run (|| true). No new dependency, no submodule change.Why here
The bot's PAT (
TECHENGINEBOT_TOKEN) and the cross-repo PR machinery already live in this workflow, so folding the analysis in keeps it authored by TechEngineBot without duplicating tokens or comments on the TechAPI side.