Bump Release [Test only] #6
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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-patch: | |
| description: Bump a patch version release | |
| type: string | |
| required: false | |
| default: 'true' | |
| bump-minor: | |
| description: Bump a minor version release | |
| type: string | |
| required: false | |
| default: 'false' | |
| bump-major: | |
| description: Bump a major version release | |
| type: string | |
| 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: ./.github/workflows/bump-release.yml | |
| with: | |
| bump-patch: ${{ inputs.bump-patch }} | |
| 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 |