Skip to content

Bump Release [Test only] #10

Bump Release [Test only]

Bump Release [Test only] #10

name: Bump Release [Test only]
permissions:
contents: read
# description: |
# Manual action to bump the current version and cut a release.
#
# Determine which version to bump.
# Push corresponding tag, with comment.
# Build a github release on pushed tag.
on:
workflow_dispatch:
inputs:
bump-type:
description: Type of bump (patch, minor, major)
type: choice
options:
- patch
- minor
- major
default: patch
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: ./.github/workflows/bump-release.yml

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

View workflow run for this annotation

GitHub Actions / .github/workflows/local-bump-release.yml

Invalid workflow file

error parsing called workflow ".github/workflows/local-bump-release.yml" -> "./.github/workflows/bump-release.yml" (source branch with sha:91cedd9cb2f07f97b14f07fa59f57237c84e3634) : (Line: 22, Col: 15): Unexpected value 'choice', (Line: 23, Col: 9): Unexpected value 'options'
with:
bump-type: ${{ inputs.bump-type }}
tag-message-title: ${{ inputs.tag-message-title }}
tag-message-body: ${{ inputs.tag-message-body }}
secrets: inherit