ci: run check-skip on blacksmith with GitHub-hosted fallback#7219
Merged
PastaPastaPasta merged 1 commit intodashpay:v23.1.xfrom Mar 14, 2026
Merged
Conversation
The check-skip job uses ubuntu-latest (GitHub-hosted only), which stalls when all GitHub runners are busy — blocking the entire CI pipeline. Use vars.RUNNER_AMD64 (set to blacksmith in the dashpay org) with a fallback to ubuntu-24.04 for external forks that don't have the variable configured.
✅ No Merge Conflicts DetectedThis PR currently has no conflicts with other open PRs. |
UdjinM6
approved these changes
Mar 12, 2026
Member
|
Whoops; this was merged into v23.1.x 🙈 |
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.
Issue
The
check-skipjob runs onubuntu-latest(GitHub-hosted only). When all GitHub runners are busy, this lightweight job stalls — blocking the entire CI pipeline since every other job depends on it.Fix
Use
vars.RUNNER_AMD64with a fallback toubuntu-24.04:RUNNER_AMD64is set to a Blacksmith runner label → uses Blacksmithubuntu-24.04This is the same pattern already used for build jobs in the repo.