Uh oh!
There was an error while loading. Please reload this page.
fix(ci): restore the Pages workflow a checkpoint commit deleted; validate before publishing - #2
Merged
Merged
Conversation
…date before publishing This repository has produced no CI signal since 2026-04-02 — 155 days at the time of writing — and an external health census reported it stale. The cause is not a quiet repo: `gh workflow list -R awkronos/web` returns nothing, because `.github/workflows/deploy.yml` does not exist on main. `bc104f2` "checkpoint: preserve current workspace state" (Chronos Bot, 2026-05-18) deleted it while banking a dirty working tree. Its own message says "No destructive cleanup performed"; the diff is 39 deleted lines of the repo's only workflow. That is the same shape as awkronos-compliance's a86cf04 — an automated checkpoint retiring the gate that would have reported the loss. Restored, with the deploy now gated on `npm run validate` (html-validate + stylelint). The repo has defined that script since 0.2.0 and CI never ran it, so nothing stopped a broken page from publishing. Pull requests validate and do not deploy. A daily schedule replaces the previous push-only trigger: a static spec site nobody pushes to reports nothing about whether it still builds. Verified locally: `npm ci` exit 0, `npm run validate` clean (html-validate over 7 pages, stylelint over style.css). staged-files: .github/workflows/deploy.yml
Uh oh!
There was an error while loading. Please reload this page.
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 freeto 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.
gh workflow list -R awkronos/webreturns nothing. This repo has produced no CI signal since 2026-04-02 — 155 days — and an external health census read it as stale. It is not a quiet repo:.github/workflows/deploy.ymldoes not exist onmain.bc104f2"checkpoint: preserve current workspace state" (Chronos Bot, 2026-05-18) deleted it while banking a dirty working tree. The commit message states "No destructive cleanup performed"; the diff is 39 deleted lines of the repository's only workflow. Same shape asawkronos-compliancea86cf04— an automated checkpoint retiring the gate that would have reported the loss.Restored, with three changes:
npm run validate(html-validate + stylelint). The repo has defined that script since 0.2.0 and CI never ran it, so nothing stopped a broken page from publishing.if: github.event_name != 'pull_request'on the deploy job).schedule:. A static spec site nobody pushes to reports nothing about whether it still builds and deploys; push-only triggers made 155 days of silence indistinguishable from health.Verified locally:
npm ciexit 0;npm run validateclean (html-validate over 7 pages, stylelint overstyle.css).🤖 Generated with Claude Code