.github/workflows: Migrate workflows to Blacksmith runners#72
Merged
Conversation
Greptile SummaryThis PR migrates the
Confidence Score: 5/5Safe to merge — the only change is swapping the runner label for the syntax-check job to match what the e2e-signal-flow job already uses. Both jobs now use the same pinned Blacksmith runner. The workflow logic, steps, and action versions are untouched, and the syntax-check job's single compile step has no system-level dependencies that would be affected by an Ubuntu version difference. No files require special attention. Important Files Changed
Flowchart%%{init: {'theme': 'neutral'}}%%
flowchart TD
A([push or pull_request to main]) --> B[syntax-check job]
A --> C[e2e-signal-flow job]
B --> B1["runs-on: blacksmith-4vcpu-ubuntu-2404\nwas: ubuntu-latest"]
B1 --> B2[checkout]
B2 --> B3[setup-python 3.11]
B3 --> B4["python -m compileall money-machine/src-python"]
C --> C1["runs-on: blacksmith-4vcpu-ubuntu-2404\nunchanged"]
C1 --> C2[checkout]
C2 --> C3[setup-python 3.11]
C3 --> C4[pip install requirements + pytest]
C4 --> C5[pytest e2e test_signal_to_execution_e2e]
style B1 fill:#d4edda,stroke:#28a745
Reviews (1): Last reviewed commit: "Migrate workflows to Blacksmith" | Re-trigger Greptile |
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.
This PR has been automatically generated by a team member in your GitHub organization using Blacksmith's Migration Wizard. This PR changes the following:
runs-on: blacksmith-4vcpu-ubuntu-2204). Learn more about the different instances available to choose from.