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 5967efd commit 70d3955Copy full SHA for 70d3955
.github/workflows/automation-release.yaml
@@ -2,7 +2,7 @@ name: Conditionally Release the SDK
2
on:
3
pull_request:
4
types: ['closed']
5
-
+
6
workflow_dispatch:
7
8
concurrency:
@@ -11,7 +11,7 @@ concurrency:
11
12
jobs:
13
release-go-sdk:
14
- if: ${{ github.event.pull_request.merged == true && contains( github.event.pull_request.labels.*.name, 'release-once-merged') }}
+ if: ${{ (github.event.pull_request.merged == true && contains( github.event.pull_request.labels.*.name, 'release-once-merged')) || github.event_name == 'workflow_dispatch' }}
15
runs-on: custom-linux-medium
16
permissions:
17
contents: write
0 commit comments