From 2da946464f6861e08dc994b086d57cc3b6ba36b4 Mon Sep 17 00:00:00 2001 From: Sheldon Vaughn Date: Fri, 22 Aug 2025 10:57:24 -0500 Subject: [PATCH] add github workflows --- .github/workflows/sdk_generation.yaml | 33 +++++++++++++++++++++++++++ .github/workflows/tagging.yaml | 19 +++++++++++++++ 2 files changed, 52 insertions(+) create mode 100644 .github/workflows/sdk_generation.yaml create mode 100644 .github/workflows/tagging.yaml diff --git a/.github/workflows/sdk_generation.yaml b/.github/workflows/sdk_generation.yaml new file mode 100644 index 0000000..19dab9a --- /dev/null +++ b/.github/workflows/sdk_generation.yaml @@ -0,0 +1,33 @@ +name: Generate +permissions: + checks: write + contents: write + pull-requests: write + statuses: write + id-token: write +"on": + workflow_dispatch: + inputs: + force: + description: Force generation of SDKs + type: boolean + default: false + set_version: + description: optionally set a specific SDK version + type: string + schedule: + - cron: 0 0 * * * + pull_request: + types: + - labeled + - unlabeled +jobs: + generate: + uses: speakeasy-api/sdk-generation-action/.github/workflows/workflow-executor.yaml@v15 + with: + force: ${{ github.event.inputs.force }} + mode: pr + set_version: ${{ github.event.inputs.set_version }} + secrets: + github_access_token: ${{ secrets.GITHUB_TOKEN }} + speakeasy_api_key: ${{ secrets.SPEAKEASY_API_KEY }} diff --git a/.github/workflows/tagging.yaml b/.github/workflows/tagging.yaml new file mode 100644 index 0000000..f42178f --- /dev/null +++ b/.github/workflows/tagging.yaml @@ -0,0 +1,19 @@ +name: Speakeasy Tagging +permissions: + checks: write + contents: write + pull-requests: write + statuses: write +"on": + push: + branches: + - main + workflow_dispatch: {} +jobs: + tag: + uses: speakeasy-api/sdk-generation-action/.github/workflows/tag.yaml@v15 + with: + registry_tags: main + secrets: + github_access_token: ${{ secrets.GITHUB_TOKEN }} + speakeasy_api_key: ${{ secrets.SPEAKEASY_API_KEY }} \ No newline at end of file