From a94dcf212f65a053f35cce6467d6d692b5609cab Mon Sep 17 00:00:00 2001 From: claude-ceo-assistant Date: Fri, 8 May 2026 01:08:46 +0000 Subject: [PATCH] chore(ci): disable upptime workflows post-GitHub-suspension (closes part of #2) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit All 5 upptime-driven workflows (graphs / response-time / static-site / summary / uptime) call api.github.com for releases lookup + issue management + result commits. Post the 2026-05-06 GitHub org suspension, no token in our org authenticates there anymore — every scheduled run fails with HTTP 401 "Bad credentials". Move the workflow files to .github/workflows-disabled/ so Gitea Actions stops scheduling them. Adds a README explaining what happened and pointing at #2 for the replacement plan (Gitea-native uptime probe). The history/ directory and .upptimerc.yml stay untouched — the existing probe-list config is still useful as input to the replacement; the historical JSON files are read-only data we may or may not migrate forward. Tracked: #2. --- .github/workflows-disabled/README.md | 19 +++++++++++++++++++ .../graphs.yml | 0 .../response-time.yml | 0 .../static-site.yml | 0 .../summary.yml | 0 .../uptime.yml | 0 6 files changed, 19 insertions(+) create mode 100644 .github/workflows-disabled/README.md rename .github/{workflows => workflows-disabled}/graphs.yml (100%) rename .github/{workflows => workflows-disabled}/response-time.yml (100%) rename .github/{workflows => workflows-disabled}/static-site.yml (100%) rename .github/{workflows => workflows-disabled}/summary.yml (100%) rename .github/{workflows => workflows-disabled}/uptime.yml (100%) diff --git a/.github/workflows-disabled/README.md b/.github/workflows-disabled/README.md new file mode 100644 index 0000000..e6aedcc --- /dev/null +++ b/.github/workflows-disabled/README.md @@ -0,0 +1,19 @@ +# Disabled upptime workflows + +These five workflows (`graphs.yml`, `response-time.yml`, `static-site.yml`, +`summary.yml`, `uptime.yml`) are upptime-driven and call +`api.github.com` for releases lookup, issue management, and result +commits. + +Post the 2026-05-06 GitHub org suspension, no token in our org +authenticates against api.github.com, so every scheduled run fails +with HTTP 401 "Bad credentials". See molecule-ai-status#2 for full +diagnosis + the replacement plan. + +Workflows here will not be re-enabled — they're moved to +`workflows-disabled/` so the failed-run noise stops while the +replacement (Gitea-native uptime probe) is built. Delete this +directory after the replacement lands and the existing history is +either migrated or marked archived. + +Tracked: molecule-ai-status#2 diff --git a/.github/workflows/graphs.yml b/.github/workflows-disabled/graphs.yml similarity index 100% rename from .github/workflows/graphs.yml rename to .github/workflows-disabled/graphs.yml diff --git a/.github/workflows/response-time.yml b/.github/workflows-disabled/response-time.yml similarity index 100% rename from .github/workflows/response-time.yml rename to .github/workflows-disabled/response-time.yml diff --git a/.github/workflows/static-site.yml b/.github/workflows-disabled/static-site.yml similarity index 100% rename from .github/workflows/static-site.yml rename to .github/workflows-disabled/static-site.yml diff --git a/.github/workflows/summary.yml b/.github/workflows-disabled/summary.yml similarity index 100% rename from .github/workflows/summary.yml rename to .github/workflows-disabled/summary.yml diff --git a/.github/workflows/uptime.yml b/.github/workflows-disabled/uptime.yml similarity index 100% rename from .github/workflows/uptime.yml rename to .github/workflows-disabled/uptime.yml