From 2fab90463887fc1be5d8c0906fd3d059b6904afa Mon Sep 17 00:00:00 2001 From: Yaacov Avramov <85496734+yaacovdv2217@users.noreply.github.com> Date: Wed, 31 Jul 2024 14:36:10 +0300 Subject: [PATCH] Create release.yml --- .github/workflows/release.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/release.yml diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 0000000..df4c7a8 --- /dev/null +++ b/.github/workflows/release.yml @@ -0,0 +1,19 @@ +name: Release +on: + workflow_dispatch: + inputs: + release: + description: 'The type of semantic version change to apply to the release.' + required: true + type: choice + options: + - major + - minor + - patch + default: 'patch' +jobs: + call-auto-version-update: + uses: spotinst/devops-scripts/.github/workflows/version-update.yml@master + secrets: inherit + with: + release: ${{ inputs.release }}