Workflow v2: parallel matrix + alerts + keep-alive + badges - #161
Merged
Conversation
… keep-alive, badges - pipeline.yml restructured: discover → parallel build matrix (one isolated job per workspace, fail-fast:false) → deploy (collect artifacts, single atomic data commit + Vercel) → pages (main only) → alert (opens/append a GitHub issue on any failure). A workspace whose build fails no longer blocks the others, and the deploy rebuilds its dashboard from committed data so it never disappears from the site. - freshness.yml: independent Monday monitor that opens a "data stale" issue if data/ hasn't updated in >8 days (catches silent failures AND a schedule auto-disabled by inactivity). - keep-alive heartbeat: deploy always stamps .github/last_run.txt → at least one commit/week, so GitHub never auto-disables the cron after 60 idle days. - build_landing: stamps the last-updated date in the landing footer. - README: pipeline/freshness/CI status badges + auto-update note. Co-Authored-By: Claude Opus 4.8 (1M context) <[email protected]>
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.
Rewrites the weekly pipeline for resilience + the requested improvements. Tested via dispatch on this branch — full job graph green (discover → 2 parallel builds → deploy → pages skipped off-main → alert skipped).
fail-fast: false) — isolated builds; one workspace failing no longer blocks others.deploycollects artifacts → single atomic data commit + Vercel; rebuilds any failed workspace's dashboard from committed data so it never disappears.alertjob opens/appends a GitHub issue on any failure.freshness.yml, Mondays) — files a "data stale" issue if data/ is >8 days old (catches silent failures + disabled schedule)..github/last_run.txtevery run → weekly commit prevents the 60-day schedule auto-disable.Verified: ~13 min wall-time (vs ~40–60 sequential), heartbeat + data commit landed.