Fix Upptime pipeline: expand to 7-service bundle, document setup#2
Merged
Conversation
…c-site workflow - Expand .upptimerc.yml from 3 → 11 monitored surfaces to match the actual agent-facing bundle promised in HN/PH/marketing copy: postgres, redis, mongodb, queue, storage, webhook, deploy provisioning endpoints, plus marketing site, dashboard, agent healthz, OpenAPI spec, and the pg.instanode.dev TLS handshake. POST-only routes are probed by GET and accept 405 as the success signal. /deploy/new accepts 401 (auth-gated). - Remove .github/workflows/static-site.yml — the upstream action upptime/status-page@master no longer exists, which is why every Static Site CI run has failed. The Jekyll-rendered README.md is the modern Upptime default and is what status.instanode.dev serves. - Document the two human-ops steps blocking Summary/Graphs/Response-Time workflows: add a GH_PAT secret with repo scope, and either turn off enforce_admins on master branch protection or add the PAT owner as a bypass actor. Without those, the auto-generated badge table and graphs never land in README.md, which is why the page currently renders as a plain README instead of a status board. Refs gtm-ops/TASKS.md item U. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
mastermanas805
added a commit
that referenced
this pull request
May 11, 2026
The hand-written README from PR #2 had no <!--start: status pages--> markers, so Summary CI's 'readme' command had nowhere to inject the auto-generated badge table — it ran successfully (per CI logs) but the commit was a no-op. This restores the standard Upptime template shape with the start/end markers Upptime expects. Next Summary CI run will fill in the badge board between them.
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
Brings
status.instanode.devfrom "renders the README" to a real Upptime status board. Three concrete fixes, plus docs for two human-ops steps that only a repo admin can do.What's broken today
curl https://status.instanode.devreturns HTTP/2 200 — but the body is the renderedREADME.md, not a status board. Root causes fromgh run list:Uptime CI(every 5 min)history/*.ymlis being populatedStatic Site CIupptime/status-page@masteraction does not exist (404)Summary CIREADME.mdtomaster, blocked byenforce_admins: truebranch protectionGraphs CIResponse Time CIBecause Summary CI has never succeeded,
README.mdwas never rewritten to embed the badge table / uptime % / graphs — so the Jekyll-rendered README is what Pages serves.Meanwhile our HN draft, PH draft, dashboard
MarketingPage.tsxfooter, andinstant-lite-web/llms-full.txtall point users at this URL. The HN draft itself flags this:What this PR changes
.upptimerc.yml— expand from 3 monitored surfaces to 11, mirroring the actual bundle the marketing copy promises:/healthz, dashboard,/openapi.json/db/new,/cache/new,/nosql/new,/queue/new,/storage/new,/webhook/new,/deploy/new. POST-only routes are probed by GET and accept405as the success signal (the handler is wired, the router is up)./deploy/newaccepts401(auth-gated).pg.instanode.dev:5432(kept from previous config)..github/workflows/static-site.yml— deleted.upptime/status-page@masterreturns 404; that's why every Static Site CI run has failed since the repo was scaffolded. Modern Upptime uses the Jekyll-renderedREADME.mdas the status page — no separate static-site step.README.md— updated to list the new 11 surfaces and link toSETUP.md. (Note: Summary CI will overwrite this file once human-ops below is done, with an auto-generated badge table. The hand-written copy here is the fallback that ships until Summary CI starts succeeding.)SETUP.md— new file documenting the two human-ops steps below.Required human-ops (admin-only, ~5 min)
These cannot be done in code. Both are documented in
SETUP.md.GH_PATsecret (classic PAT,reposcope). All four workflows already referencesecrets.GH_PAT || secrets.GITHUB_TOKENso no workflow edit needed. The defaultGITHUB_TOKENcannot bypass branch protection — that's the whole point of protection. A PAT can.enforce_adminsonmaster(gh api -X DELETE repos/InstaNode-dev/instant-status/branches/master/protection/enforce_admins) or add the PAT owner as a bypass actor.Once both are done, manually run
Setup CIto seed the badge dirs, thenSummary CIto rewrite the README. Future runs are automatic (every 5 min for probes, daily for README/graphs/response-time).Test plan
GH_PATsecret as documented inSETUP.mdenforce_adminsonmasterbranch protectionActions → Setup CI → Run workflowActions → Summary CI → Run workflowcurl -s https://status.instanode.dev | grep -c 'shields.io'returns > 0 (one badge per service)gh run list --limit 10shows green for Summary/Graphs/Response Time on next 00:00 UTC runOut of scope
/statuspage (dashboard/src/pages/StatusPage.tsx) — kept as-is. It serves a different purpose: in-product client-side probes, no historical data, no incident issues. Marketing footer already deep-links tostatus.instanode.dev, so no dashboard change needed.🤖 Generated with Claude Code