From 7f4322e9c7e0bac6bd5a594c2b3a29c16b5dee5f Mon Sep 17 00:00:00 2001 From: CJ Avilla Date: Mon, 12 Jan 2026 09:40:11 -0500 Subject: [PATCH] try merge --- .github/workflows/combine-sdk.yml | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 .github/workflows/combine-sdk.yml diff --git a/.github/workflows/combine-sdk.yml b/.github/workflows/combine-sdk.yml new file mode 100644 index 00000000..589a9a72 --- /dev/null +++ b/.github/workflows/combine-sdk.yml @@ -0,0 +1,29 @@ +name: Combine OpenAPI Specs + +on: + workflow_dispatch: + push: + branches: + - main + paths: + - 'openapi/*.json' + +jobs: + combine: + runs-on: ubuntu-latest + steps: + - name: Checkout repository + uses: actions/checkout@v4 + + - name: Prepare OpenAPI Spec — Combine + uses: stainless-api/upload-openapi-spec-action/prepare/combine#sam/add-redocly-action + with: + input_files: 'openapi/*.json' + output_path: './combined-openapi.json' + log_level: 'info' + + - name: Upload combined spec + uses: actions/upload-artifact@v4 + with: + name: combined-openapi-spec + path: combined-openapi.json