We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c421630 commit e6ff8beCopy full SHA for e6ff8be
.genignore
@@ -1 +1,3 @@
1
-node_modules/
+node_modules/
2
+.github/
3
.github/workflows/generation.yml
@@ -0,0 +1,19 @@
+name: Generate
+
+on:
4
+ workflow_dispatch: {}
5
+ schedule:
6
+ - cron: 0 0 * * *
7
8
+jobs:
9
+ generate:
10
+ name: Generate SDK
11
+ runs-on: ubuntu-latest
12
+ steps:
13
+ - uses: speakeasy-api/sdk-generation-action@v1.4
14
+ with:
15
+ speakeasy_version: latest
16
+ openapi_doc_location: https://docs.speakeasyapi.dev/openapi.yaml
17
+ github_access_token: ${{ secrets.GITHUB_TOKEN }}
18
+ languages: |-
19
+ - typescript
0 commit comments