Generate #282
This file contains 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
name: Generate | |
on: | |
workflow_dispatch: # Allows manual triggering of the workflow to generate SDK | |
inputs: | |
force: | |
description: "Force generation of SDKs" | |
type: boolean | |
default: false | |
schedule: | |
- cron: 0 0 * * * # Runs every day at midnight | |
jobs: | |
generate: | |
uses: speakeasy-api/sdk-generation-action/.github/workflows/sdk-generation.yaml@v14 | |
with: | |
speakeasy_version: latest | |
openapi_docs: | | |
- https://docs.api.epilot.io/product.yaml | |
languages: | | |
- terraform | |
mode: pr | |
force: ${{ github.event.inputs.force }} | |
secrets: | |
github_access_token: ${{ secrets.GITHUB_TOKEN }} | |
speakeasy_api_key: ${{ secrets.SPEAKEASY_API_KEY }} |