ci: migrate ubuntu-latest -> self-hosted runner#6
Open
forrestlinfeng wants to merge 1 commit into
Open
Conversation
57d7600 to
a0b332d
Compare
There was a problem hiding this comment.
Cursor Bugbot has reviewed your changes using default effort and found 1 potential issue.
❌ Bugbot Autofix is OFF. To automatically fix reported issues with cloud agents, enable autofix in the Cursor dashboard.
Reviewed by Cursor Bugbot for commit a0b332d. Configure here.
| jobs: | ||
| check: | ||
| runs-on: ubuntu-latest | ||
| runs-on: [self-hosted, Linux, X64] |
There was a problem hiding this comment.
Fork PRs on self-hosted runner
Medium Severity
Moving this job to self-hosted keeps the existing pull_request trigger, so workflows from fork PRs that touch data/projects.json can execute on the persistent EvoMap runner instead of an ephemeral GitHub-hosted VM, increasing exposure if untrusted contributors can open PRs.
Reviewed by Cursor Bugbot for commit a0b332d. Configure here.
Routes Linux CI jobs via the org-level CI_LABEL_LINUX_X64 variable so the runner pool can be swapped in one place (e.g. emergency fall-back to ubuntu-latest if the self-hosted runner is down). Default value of the variable: ["self-hosted","Linux","X64"] -> evomap-shoot. Skipped files where ubuntu-latest is load-bearing (glibc pin, cross-platform matrix, deliberately paid runner) -- those are addressed separately.
a0b332d to
8cf97bf
Compare
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.


Routes Linux CI jobs to the EvoMap self-hosted runner (evomap-shoot, Debian 12, 8 cores, 31G RAM).
Affected files in this repo:
Skipped across the org where ubuntu-latest is load-bearing (glibc pin, cross-platform matrix, deliberately paid runner).
If CI fails on this runner due to missing tooling, install via setup-* actions or open an issue. Revert with
git reverton this commit.Auto-merge is enabled — will land when required checks pass.
Note
Low Risk
Only runner labels change; workflow logic and secrets usage are the same, with the main risk being self-hosted runner availability or missing tooling.
Overview
Routes scheduled and manual GitHub Actions jobs off GitHub-hosted
ubuntu-latestonto the org’s Linux x64 self-hosted runner via the repository variablevars.CI_LABEL_LINUX_X64.The change is limited to the
runs-onlabel in three workflows: Check Links, Weekly Monitor, and Update Star Counts. Triggers, permissions, Node setup, and script steps are unchanged.Reviewed by Cursor Bugbot for commit 8cf97bf. Bugbot is set up for automated code reviews on this repo. Configure here.