chore: Publish the README to GitHub Pages with Jekyll - #30
Merged
Merged
Conversation
Owner
Author
|
ai step 10b: pass. The PR-time Jekyll build (run 35777705333) succeeded. |
The live project site at hexember.github.io/active-browser is stale: it still advertises an install one-liner on a domain this project does not own and serves an old copy of install.sh. Nothing rebuilds it. Add a first-party pages workflow that renders README.md (as index.html) plus CONTRIBUTING, SECURITY, CODE_OF_CONDUCT and CHANGELOG with the Cayman theme, and deploys on push to main. Pull requests run the same build and a post-build allowlist check (exact page set, no old domain, no install.sh) so leaks fail before merge; deploy runs only from main. _config.yml excludes everything else and whitelists the two docs that optional-front-matter would otherwise skip. Document the site in Project.md (§3 row, Phase 6, §4 tree) and CONTRIBUTING's repository layout, and note the fix in CHANGELOG. Co-Authored-By: Claude Opus 5.5 <noreply@anthropic.com>
The PR is open against chore/readme-restructure (stacked on #29), so the task file records the link and moves to pr-open as the main session asked. Co-Authored-By: Claude Opus 5.5 <noreply@anthropic.com>
…ST-PLAN Co-Authored-By: Claude Opus 5.5 <noreply@anthropic.com>
hexember
force-pushed
the
chore/pages-readme
branch
from
September 23, 2026 04:36
eced9a5 to
7162868
Compare
hexember
added a commit
that referenced
this pull request
Sep 23, 2026
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.
Summary
Add a first-party GitHub Actions workflow that builds
README.md(asindex.html) and the four root docs it links to with Jekyll, then deploys them to https://hexember.github.io/active-browser/ on every relevant push tomain. No repository settings change.Why: the live site is stale. It still advertises an install one-liner on a domain this project does not own, and it still serves an old copy of
/install.sh. Nothing rebuilds it today. Once this stack merges, the site is rebuilt from the README, and the only install command is theraw.githubusercontent.comone-liner.Published set (enforced by
_config.ymland a post-build allowlist check):README.md→/,CONTRIBUTING,SECURITY,CODE_OF_CONDUCT,CHANGELOG→.html, plus the theme's CSS.install.sh,LICENSE,Project.md,CLAUDE.md,tasks/,docs/,assets/,Sources/,Support/,MakefileandPackage.swiftare not published.Spec checklist
.github/workflows/pages.yml(new):actions/*@vNonly (checkout@v4, configure-pages@v6, jekyll-build-pages@v1, upload-pages-artifact@v5, deploy-pages@v5). Top-levelpermissions: {}with per-job scopes. Triggers arepushtomain(7 paths),pull_request(same paths, no branch filter) andworkflow_dispatch. There is an allowlist step between build and upload.deployis gated to non-PR events and has job-levelconcurrency: { group: pages, cancel-in-progress: false }. No Gemfile._config.yml(new): Cayman theme,repository: hexember/active-browser,show_downloads: false,readme_index/optional_front_matterwithremove_originals: true,include:limited toCONTRIBUTING.mdandCODE_OF_CONDUCT.md, and a block-listexclude:.Project.md: §3 split-table row 18, a Phase 6 bullet about the site, and §4 tree entries for_config.ymlandpages.yml.CONTRIBUTING.md: repository layout block updated, plus a paragraph on site link rules. No heading changed.CHANGELOG.md: one### Fixedbullet about the outdated website install command. The old domain is not spelled.include:+remove_originals) and A2 (build on PRs, deploy only frommain, job-level concurrency).Self-verification (
aisteps, run 2026-09-23)_config.ymlandpages.ymltrueproblems: 0, exit 0. (b) both blacklist lines, include line, both remove_originals lines,problems: 5, exit 1_config.ymlProject.md/.github/also emptyuses:, allactions/*@vN; cancel-in-progress count 1;install.shonly in header comment; no Gemfile(s).mdlisted, CONTRIBUTING/CODE_OF_CONDUCT.htmlmissing2,/install.shreturns200(the problem this PR fixes)swift buildBuild complete!chore/readme-restructurepagesrun: build green, deploy skipped, artifact contentspull_requestworkflow run, and the result will be posted as a PR comment.Testing notes
Preconditions
main.main, then merge this PR. Open Actions → pages → the run for the merge commit.pagesrun is green:buildpasses, including "Published set is exactly the allowlist", anddeployshows thegithub-pagesenvironment URL. Any::warning::about "View on GitHub" is noted.raw.githubusercontent.com/hexember/active-browser/main/install.shone-liner. The Cayman header reads "ActiveBrowser" with the tagline and has a View on GitHub button to github.com/hexember/active-browser. There are no Download .zip/.tar.gz buttons, and the H1 is not repeated under the header.curl -s https://hexember.github.io/active-browser/ | grep -c 'activebrowser\.app', and for each ofinstall.sh,Project.html,CLAUDE.html,tasks/TEST-PLAN.html,LICENSE,Makefile,README.html:curl -s -o /dev/null -w '%{http_code} %{url_effective}\n' https://hexember.github.io/active-browser/<path>0. Every path returns404(README.html404 is expected; README is served at/)..htmlpage on hexember.github.io, not a 404 or a raw.mdfile.#build-and-run,#what-youre-trusting-when-you-install-thisand#privacyland on the right heading. Contents anchors scroll correctly. LICENSE links open GitHub.Reset after testing
pagesrun happens, so a revert alone does not restore the old site, and it shouldn't.🤖 Generated with Claude Code