Skip to content

Commit

Permalink
fix: default makePR in workflow calls
Browse files Browse the repository at this point in the history
  • Loading branch information
dsinghvi committed Oct 5, 2024
1 parent 98abb52 commit e42cf1c
Show file tree
Hide file tree
Showing 6 changed files with 24 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/release-csharp-sdk.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@ name: Release C# SDK
on:
workflow_call:
inputs:
makePR:
description: Make Pull Request
default: false
type: boolean
version:
description: "The version of the C# SDK that you would like to release"
required: true
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/release-go-sdk.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@ name: Release Go SDK
on:
workflow_call:
inputs:
makePR:
description: Make Pull Request
default: false
type: boolean
version:
description: "The version of the C# SDK that you would like to release"
required: true
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/release-java-sdk.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@ name: Release Java SDK
on:
workflow_call:
inputs:
makePR:
description: Make Pull Request
default: false
type: boolean
version:
description: "The version of the C# SDK that you would like to release"
required: true
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/release-python-sdk.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@ name: Release Python SDK
on:
workflow_call:
inputs:
makePR:
description: Make Pull Request
default: false
type: boolean
version:
description: "The version of the C# SDK that you would like to release"
required: true
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/release-ruby-sdk.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@ name: Release Ruby SDK
on:
workflow_call:
inputs:
makePR:
description: Make Pull Request
default: false
type: boolean
version:
description: "The version of the C# SDK that you would like to release"
required: true
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/release-ts-sdk.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@ name: Release TypeScript SDK
on:
workflow_call:
inputs:
makePR:
description: Make Pull Request
default: false
type: boolean
version:
description: "The version of the C# SDK that you would like to release"
required: true
Expand Down

0 comments on commit e42cf1c

Please sign in to comment.