Skip to content

generate-version-tag #43

generate-version-tag

generate-version-tag #43

name: generate-version-tag
on:
workflow_dispatch:
if: github.ref == 'refs/heads/main'
inputs:
stage:
description: 'Stage'
required: true
default: 'auto'
type: choice
options:
- 'alpha'
- 'beta'
- 'rc'
- 'final'
- 'auto'
scope:
description: 'Scope'
required: true
default: 'auto'
type: choice
options:
- 'patch'
- 'minor'
- 'major'
- 'auto'
jobs:
generate:
uses: JavierSegoviaCordoba/reusable-workflows/.github/workflows/generate-version-tag.yaml@main
with:
stage: '${{ github.event.inputs.stage }}'
scope: '${{ github.event.inputs.scope }}'
secrets: inherit