fix(ci): replace blacksmith runners with ubuntu-latest for fork#78
Merged
Conversation
Blacksmith runners are a paid service only available to upstream (anomalyco). Fork CI was permanently stuck in "queued" state for all test/typecheck/generate jobs. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
|
This PR doesn't fully meet our contributing guidelines and PR template. What needs to be fixed:
Please edit this PR description to address the above within 2 hours, or it will be automatically closed. If you believe this was flagged incorrectly, please let a maintainer know. |
There was a problem hiding this comment.
Pull request overview
Replaces Blacksmith-hosted runners with GitHub-hosted runners so CI workflows do not remain permanently queued on forks (addresses #77).
Changes:
- Updated workflow
runs-onfromblacksmith-4vcpu-ubuntu-2404toubuntu-latestacross affected CI workflows. - Ensured test, typecheck, generate, and PR management jobs can execute on forked repositories.
Reviewed changes
Copilot reviewed 4 out of 4 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
| .github/workflows/typecheck.yml | Switches typecheck job runner to ubuntu-latest to avoid Blacksmith queueing on forks. |
| .github/workflows/test.yml | Switches unit + e2e job runners to ubuntu-latest so CI executes on forks. |
| .github/workflows/pr-management.yml | Switches PR management job runner to ubuntu-latest to restore workflow execution on forks. |
| .github/workflows/generate.yml | Switches generate job runner to ubuntu-latest so automation can run without Blacksmith. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
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.
What
Blacksmith runners を ubuntu-latest に置換。
Why
Blacksmith は upstream 専用の有料 CI サービス。フォークでは全 CI ジョブが永久 queued。
Closes #77
Changes
Test plan