-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add trigger job for releasing golibs
- Loading branch information
1 parent
0093b95
commit 961d3e5
Showing
1 changed file
with
7 additions
and
2 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,14 +1,19 @@ | ||
name: Release GoPowerscale | ||
# Invocable as a reusable workflow | ||
# Can be manually triggered | ||
on: # yamllint disable-line rule:truthy | ||
on: # yamllint disable-line rule:truthy | ||
workflow_call: | ||
workflow_dispatch: | ||
inputs: | ||
version: | ||
description: 'Version to release (major, minor, patch) Ex: 1.0.0' | ||
description: "Version to release (major, minor, patch) Ex: 1.0.0" | ||
required: true | ||
repository_dispatch: | ||
types: [release-go-libs] | ||
jobs: | ||
csm-release: | ||
uses: dell/common-github-actions/.github/workflows/csm-release-libs.yaml@main | ||
name: Release Go Client Libraries | ||
with: | ||
version: "${{ github.event.inputs.version || 'minor' }}" | ||
secrets: inherit |