chore: add local dev setup script and gitignore workflow.local.yaml#37
Merged
Conversation
Adds .speakeasy/workflow.local.example as a template for local SDK generation, a bin/setup-local script to bootstrap it, and gitignores workflow.local.yaml so it is never accidentally committed. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
No issues foundGenerated by Fresh Eyes Reviewer | Share feedback in #ai-code-reviews |
azrosen92
approved these changes
May 11, 2026
azrosen92
added a commit
that referenced
this pull request
May 18, 2026
The file was meant to be gitignored (already done in PR #37-style cleanup) but the original tracked copy was never removed. CI was picking up its local-path source URLs and failing.
azrosen92
added a commit
that referenced
this pull request
May 19, 2026
The file was meant to be gitignored (see #37 which added the gitignore entry + workflow.local.example template + bin/setup-local helper), but the original tracked copy was never removed. CI picks up its local-path source URLs (e.g., `../Gusto-Partner-API/...`) and fails on the local target. Drop the tracked copy; the gitignore entry already prevents re-adds.
azrosen92
added a commit
that referenced
this pull request
May 20, 2026
The file was meant to be gitignored (see #37 which added the gitignore entry + workflow.local.example template + bin/setup-local helper), but the original tracked copy was never removed. CI picks up its local-path source URLs (e.g., `../Gusto-Partner-API/...`) and fails on the local target. Drop the tracked copy; the gitignore entry already prevents re-adds.
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.
Summary
.speakeasy/workflow.local.exampleas a checked-in template for local SDK generationbin/setup-localscript that copies the example toworkflow.local.yaml(idempotent).speakeasy/workflow.local.yamlso it is never accidentally committedWhy
workflow.local.yamlbeing committed was breaking the Speakeasy CI pipeline — the SDK generation action picks up that exact filename and uses it in place of the production workflow config. The.examplefilename is safe and ignored by the pipeline.Test plan
bin/setup-localcreates.speakeasy/workflow.local.yamlfrom the examplebin/setup-localis a no-op (skips if file exists).speakeasy/workflow.local.yamldoes not appear as a staged file after running setup