From c79c5e6c9d6a5610727481ec887d26ea2f633b4b Mon Sep 17 00:00:00 2001 From: Aaron Rosen Date: Mon, 18 May 2026 11:32:41 -0400 Subject: [PATCH] chore: untrack .speakeasy/workflow.local.yaml 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. --- .speakeasy/workflow.local.yaml | 24 ------------------------ 1 file changed, 24 deletions(-) delete mode 100644 .speakeasy/workflow.local.yaml diff --git a/.speakeasy/workflow.local.yaml b/.speakeasy/workflow.local.yaml deleted file mode 100644 index 3b14804e..00000000 --- a/.speakeasy/workflow.local.yaml +++ /dev/null @@ -1,24 +0,0 @@ -workflowVersion: 1.0.0 -speakeasyVersion: latest -sources: - GustoEmbedded-local: - inputs: - - location: ../Gusto-Partner-API/generated/embedded/api.v2025-06-15.embedded.yaml - overlays: - - location: ../Gusto-Partner-API/.speakeasy/speakeasy-modifications-overlay.yaml - - location: gusto_embedded/.speakeasy/speakeasy-modifications-overlay.yaml - GustoAppInt-local: - inputs: - - location: ../Gusto-Partner-API/generated/app-integrations/api.v2025-06-15.app-integrations.yaml - overlays: - - location: ../Gusto-Partner-API/.speakeasy/speakeasy-app-int-modifications-overlay.yaml - - location: gusto_app_int/.speakeasy/speakeasy-modifications-overlay.yaml -targets: - local: - target: python - source: GustoEmbedded-local - output: ./gusto_embedded - local-app-int: - target: python - source: GustoAppInt-local - output: ./gusto_app_int