Skip to content

Bump Release

Bump Release #3

Workflow file for this run

name: Bump Release
permissions:
contents: read
on:
workflow_dispatch:
inputs:
bump-type:
description: Type of bump (patch, minor, major)
type: choice
options:
- patch
- minor
- major
default: patch
required: false
tag-message-title:
description: Tag message title to prepend to the release notes
required: false
type: string
tag-message-body:
description: |
Tag message body to prepend to the release notes.
(use "|" to replace end of line).
required: false
type: string
jobs:
bump-release:
permissions:
contents: write
uses: go-openapi/ci-workflows/.github/workflows/bump-release.yml@84f8f9c0759d5d1d0c32b18a7abaa0cba65ebcff # v0.2.9
with:
bump-type: ${{ inputs.bump-type }}
tag-message-title: ${{ inputs.tag-message-title }}
tag-message-body: ${{ inputs.tag-message-body }}
secrets: inherit