Generate SDK #96
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
| name: Generate SDK | |
| permissions: | |
| checks: write | |
| contents: write | |
| pull-requests: write | |
| statuses: write | |
| on: | |
| workflow_dispatch: | |
| inputs: | |
| force: | |
| description: Force SDK generation, even if no changes are detected. | |
| type: boolean | |
| default: false | |
| schedule: | |
| - cron: "0 6 * * *" | |
| jobs: | |
| generate: | |
| uses: speakeasy-api/sdk-generation-action/.github/workflows/workflow-executor.yaml@v15 | |
| with: | |
| speakeasy_version: latest | |
| force: ${{ github.event.inputs.force }} | |
| mode: direct | |
| secrets: | |
| github_access_token: ${{ secrets.GITHUB_TOKEN }} | |
| speakeasy_api_key: ${{ secrets.SPEAKEASY_API_KEY }} | |
| npm_token: ${{ secrets.NPM_TOKEN }} |