Skip to content

Bump Release

Bump Release #2

Workflow file for this run

name: Bump Release
permissions:
contents: read
on:
workflow_dispatch:
inputs:
bump-patch:
description: Bump a patch version release
type: boolean
required: false
default: true
bump-minor:
description: Bump a minor version release
type: boolean
required: false
default: false
bump-major:
description: Bump a major version release
type: boolean
required: false
default: 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-patch: ${{ inputs.bump-patch }}

Check failure on line 41 in .github/workflows/bump-release.yml

View workflow run for this annotation

GitHub Actions / Bump Release

Invalid workflow file

The workflow is not valid. .github/workflows/bump-release.yml (Line: 41, Col: 19): Invalid input, bump-patch is not defined in the referenced workflow. .github/workflows/bump-release.yml (Line: 42, Col: 19): Invalid input, bump-minor is not defined in the referenced workflow.
bump-minor: ${{ inputs.bump-minor }}
bump-major: ${{ inputs.bump-major }}
tag-message-title: ${{ inputs.tag-message-title }}
tag-message-body: ${{ inputs.tag-message-body }}
secrets: inherit