ci: migrate all workflows to Namespace runners - #655
Draft
claude[bot] wants to merge 1 commit into
Draft
claude[bot] wants to merge 1 commit into
claude[bot] wants to merge 1 commit into
Conversation
Move all 10 GitHub-hosted workflow jobs onto Namespace profile runners: - codegen: _build, generate, check (lint/build/install matrices) - npm-test: check (test matrix, Python 3.11–3.14) - standard: _publish, publish, semantic-release - mini: automerge, format, prune, version Labels are hard-coded; no RUNNER_OVERRIDE fallback. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_015ZbCLvCAyCca1zguyCbHT5
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.
Requested by Phil Chmalts · Slack thread
Before
Every job in the 10 workflows under
.github/workflows/ran on GitHub-hostedubuntu-latest:_build.yml,_publish.yml,automerge.yml(3 jobs),check.yml(test / lint / build / install — thetestmatrix expands across Python 3.11–3.14),format.yml,generate.yml,prune.yml,publish.yml,semantic-release.yml(2 jobs),version.yml.The
check.ymlmatrices declaredos: [ubuntu-latest]and jobs usedruns-on: ${{ matrix.os }}. No Namespace runners were in use in this repo.After
Each
runs-on(or matrixosentry) is now a hard-coded Namespace profile label chosen by workload shape, matching the profile convention established inseam-connect:namespace-profile-codegen_build.yml,generate.yml,check.yml(lint job, build matrix, install matrix)namespace-profile-npm-testcheck.yml(test matrix — Python 3.11 / 3.12 / 3.13 / 3.14)namespace-profile-standard_publish.yml,publish.yml(release job),semantic-release.yml(both jobs)namespace-profile-miniautomerge.yml(all 3 jobs),format.yml,prune.yml,version.ymlcheck.ymlkeepsruns-on: ${{ matrix.os }}; only the matrixos:values (and the correspondinginclude:entries) were swapped so the expression continues to resolve to the right label._build.yml'sruns_oninput is declared but never referenced by the job (runs-onis hard-coded), socheck.yml'sruns_on: ${{ matrix.os }}argument has no runtime effect and did not need special handling; the input'sdefault: ubuntu-latestis left unchanged for the same reason.No
RUNNER_OVERRIDEfallback was added. These workflows go straight to the Namespace label; flipping back to GitHub-hosted during a Namespace outage would require editing the YAML.Draft PR — please sanity-check the profile-to-workflow mapping before marking ready.
🤖 Generated with Claude Code
https://claude.ai/code/session_015ZbCLvCAyCca1zguyCbHT5
Generated by Claude Code