Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/selector.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ on:
description: |2
Prefix git tags with a "v" before the semantic version number.
required: false
type: string
type: bool
github_api_url:
default: "https://api.github.com"
description: Github API URL.
Expand Down Expand Up @@ -75,7 +75,7 @@ jobs:
fetch-tags: true
fetch-depth: 0
- name: Select a workflow
uses: kohirens/version-release/.github/actions/workflow-selector@5.1.3
uses: kohirens/version-release/.github/actions/workflow-selector@5.1.4
id: selector
with:
enable_tag_v_prefix: ${{ inputs.enable_tag_v_prefix }}
Expand All @@ -101,7 +101,7 @@ jobs:
merge-multiple: true
run-id: ${{ inputs.add_files_to_commit_run_id }}
- name: Update and publish the changelog
uses: kohirens/version-release/.github/actions/publish-changelog@5.1.3
uses: kohirens/version-release/.github/actions/publish-changelog@5.1.4
id: changelog
with:
changelog_hash: ${{ needs.select-a-workflow.outputs.changelog_hash }}
Expand All @@ -124,7 +124,7 @@ jobs:
fetch-tags: true
fetch-depth: 0
- name: Publish a release
uses: kohirens/version-release/.github/actions/publish-release-tag@5.1.3
uses: kohirens/version-release/.github/actions/publish-release-tag@5.1.4
id: release
with:
tag_cmd: 'echo "${{ needs.select-a-workflow.outputs.next_semver }}"'
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [5.1.4]

### Fixed

- Unexpected Type in Selector Workflow

## [5.1.3]

### Changed
Expand Down