-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update push code samples in generation action
- Loading branch information
1 parent
146dabf
commit b4fd284
Showing
1 changed file
with
33 additions
and
28 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,32 +1,37 @@ | ||
name: Generate | ||
permissions: | ||
checks: write | ||
contents: write | ||
pull-requests: write | ||
statuses: write | ||
checks: write | ||
contents: write | ||
pull-requests: write | ||
statuses: 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 * * * | ||
workflow_dispatch: | ||
inputs: | ||
force: | ||
description: Force generation of SDKs | ||
type: boolean | ||
default: false | ||
push_code_samples_only: | ||
description: Force push only code samples from SDK generation | ||
type: boolean | ||
default: false | ||
set_version: | ||
description: optionally set a specific SDK version | ||
type: string | ||
schedule: | ||
- cron: 0 0 * * * | ||
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 }} | ||
speakeasy_version: latest | ||
secrets: | ||
github_access_token: ${{ secrets.GITHUB_TOKEN }} | ||
java_gpg_passphrase: ${{ secrets.JAVA_GPG_PASSPHRASE }} | ||
java_gpg_secret_key: ${{ secrets.JAVA_GPG_SECRET_KEY }} | ||
ossrh_password: ${{ secrets.OSSRH_PASSWORD }} | ||
speakeasy_api_key: ${{ secrets.SPEAKEASY_API_KEY }} | ||
generate: | ||
uses: speakeasy-api/sdk-generation-action/.github/workflows/workflow-executor.yaml@v15 | ||
with: | ||
force: ${{ github.event.inputs.force }} | ||
mode: pr | ||
push_code_samples_only: ${{ fromJSON(github.event.inputs.push_code_samples_only != '' && github.event.inputs.push_code_samples_only || 'false') }} | ||
set_version: ${{ github.event.inputs.set_version }} | ||
speakeasy_version: latest | ||
secrets: | ||
github_access_token: ${{ secrets.GITHUB_TOKEN }} | ||
java_gpg_passphrase: ${{ secrets.JAVA_GPG_PASSPHRASE }} | ||
java_gpg_secret_key: ${{ secrets.JAVA_GPG_SECRET_KEY }} | ||
ossrh_password: ${{ secrets.OSSRH_PASSWORD }} | ||
speakeasy_api_key: ${{ secrets.SPEAKEASY_API_KEY }} |