ci: point inherited workflows at ubuntu-latest, prune upstream-only bots#4
Merged
Merged
Conversation
The workflows inherited from upstream getzep/graphiti request the runner label depot-ubuntu-22.04 — upstream's paid Depot fleet. This fork has no such runners, so unit-tests, pyright, ruff, and mcp-server-tests queue indefinitely and no fork PR can go green on inherited CI (three PRs merged on local-suite evidence instead). - unit_tests / typecheck / lint / mcp-server-tests: runs-on depot-ubuntu-22.04 -> ubuntu-latest. The depot-NAT workaround comments/steps are left in place — harmless on ubuntu-latest. - Remove upstream-only bots: cla.yml (CLAAssistant, needs upstream's CLA app key), pr-triage.yml (upstream's Claude triage, needs their ANTHROPIC_API_KEY), ai-moderator.yml (spam-labels issues, which are disabled on this fork, and minimizes comments on PRs). - release-* workflows still reference depot-ubuntu-24.04-small; left untouched — the fork does not publish releases, and they only trigger on release events. Tracked in mostlyharmless-ai/watercooler-cloud#1100 (fork has issues disabled). Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> Signed-off-by: calebjacksonhoward <calebjhoward@gmail.com>
|
Bugbot is not enabled for your account, so this pull request was not reviewed. Enable Bugbot in the Cursor dashboard to get automatic reviews on future PRs. |
calebjacksonhoward
temporarily deployed
to
development
July 14, 2026 18:47 — with
GitHub Actions
Inactive
calebjacksonhoward
temporarily deployed
to
development
July 14, 2026 18:47 — with
GitHub Actions
Inactive
calebjacksonhoward
left a comment
Author
There was a problem hiding this comment.
Reviewed latest head e5e0b4fba793dd523f5da3955ba8e34f512c246a.
I do not have blocking findings from this pass. The inherited CI jobs that need to run on normal fork/same-repo PRs now target ubuntu-latest, and the upstream-only bots being removed are the ones currently requiring upstream-specific app/API secrets or issue/PR hygiene behavior that this fork does not use.
Verification:
gh pr diff 4reviewed.- Current checks show the
pull_requestworkflows that this branch can affect are executing on GitHub-hosted runners:unit-tests,database-integration-tests,pyright,live-mcp-tests, and CodeQL are passing. CLAAssistantandtriageare still failing on this PR because they arepull_request_targetworkflows evaluated frommain; deleting them in this branch cannot affect those checks until after merge. Same forruffstill being pending frommain'spull_request_targetworkflow.git diff --check origin/main...HEADpassed.- Parsed all remaining
.github/workflows/*.ymlfiles successfully with PyYAML.
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.
Fixes the CI defect tracked in mostlyharmless-ai/watercooler-cloud#1100 (this fork has issues disabled, so it's tracked in the consuming repo).
Problem
The workflows inherited from upstream getzep/graphiti request the runner label
depot-ubuntu-22.04— upstream's paid Depot fleet, which this fork has no access to.unit-tests,pyright(typecheck),ruff(lint), andmcp-server-teststherefore queue indefinitely, and no fork PR can go green on inherited CI. PRs #1–#3 merged on local-suite-parity evidence instead — and since watercooler-cloud now pins fork commits into the product, every future graphiti change pays this tax.Changes
unit_tests.yml(both jobs),typecheck.yml,lint.yml,mcp-server-tests.yml:runs-on: depot-ubuntu-22.04→ubuntu-latest. The depot-NAT workaround comments/steps are left in place — they are harmless onubuntu-latestand keeping them minimizes drift from upstream.cla.yml— CLAAssistant; needs upstream'sCLA_APP_PRIVATE_KEY, and CLA collection is meaningless on our fork.pr-triage.yml— upstream's Claude triage; needs theirANTHROPIC_API_KEY.ai-moderator.yml— spam-labels issues (disabled on this fork) and minimizes comments on PRs; upstream-hygiene bot with no value here.release-*workflows still referencedepot-ubuntu-24.04-small, but they only trigger on release events and the fork does not publish releases.codeql.ymlalready usesubuntu-latest.Verification
This PR is itself the test: as a same-repo PR, the
pull_request-triggered workflows run from this branch's workflow files, sounit-tests/typecheck/mcp-server-testsshould actually execute (not queue) onubuntu-latest. Notelint.ymltriggers onpull_request_targetand runs from main's workflow file — it will only pick up the new runner after merge.🤖 Generated with Claude Code