Skip to content

Commit e42cf1c

Browse files
committed
fix: default makePR in workflow calls
1 parent 98abb52 commit e42cf1c

File tree

6 files changed

+24
-0
lines changed

6 files changed

+24
-0
lines changed

.github/workflows/release-csharp-sdk.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@ name: Release C# SDK
33
on:
44
workflow_call:
55
inputs:
6+
makePR:
7+
description: Make Pull Request
8+
default: false
9+
type: boolean
610
version:
711
description: "The version of the C# SDK that you would like to release"
812
required: true

.github/workflows/release-go-sdk.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@ name: Release Go SDK
33
on:
44
workflow_call:
55
inputs:
6+
makePR:
7+
description: Make Pull Request
8+
default: false
9+
type: boolean
610
version:
711
description: "The version of the C# SDK that you would like to release"
812
required: true

.github/workflows/release-java-sdk.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@ name: Release Java SDK
33
on:
44
workflow_call:
55
inputs:
6+
makePR:
7+
description: Make Pull Request
8+
default: false
9+
type: boolean
610
version:
711
description: "The version of the C# SDK that you would like to release"
812
required: true

.github/workflows/release-python-sdk.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@ name: Release Python SDK
33
on:
44
workflow_call:
55
inputs:
6+
makePR:
7+
description: Make Pull Request
8+
default: false
9+
type: boolean
610
version:
711
description: "The version of the C# SDK that you would like to release"
812
required: true

.github/workflows/release-ruby-sdk.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@ name: Release Ruby SDK
33
on:
44
workflow_call:
55
inputs:
6+
makePR:
7+
description: Make Pull Request
8+
default: false
9+
type: boolean
610
version:
711
description: "The version of the C# SDK that you would like to release"
812
required: true

.github/workflows/release-ts-sdk.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@ name: Release TypeScript SDK
33
on:
44
workflow_call:
55
inputs:
6+
makePR:
7+
description: Make Pull Request
8+
default: false
9+
type: boolean
610
version:
711
description: "The version of the C# SDK that you would like to release"
812
required: true

0 commit comments

Comments
 (0)