diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index c25ba2b..13d77d1 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -5,10 +5,21 @@ on: tags: - 'v*' workflow_dispatch: + inputs: + bump: + description: 'Version bump type' + required: true + type: choice + options: + - patch + - minor + - major jobs: release: uses: netresearch/skill-repo-skill/.github/workflows/release.yml@main + with: + bump: ${{ inputs.bump }} permissions: contents: write pull-requests: write