Skip to content
Open
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
3 changes: 3 additions & 0 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -122,3 +122,6 @@ inputs:
manual_version:
description: "Manually specify the version to bump to"
required: false
config:
description: "Manually specify the config file to use"
required: false
5 changes: 5 additions & 0 deletions entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,11 @@ echo "previous_version_minor=${PREV_REV_MINOR}" >>"$GITHUB_OUTPUT"


CZ_CMD=('cz')

if [[ $INPUT_CONFIG ]]; then
CZ_CMD+=('--config' "$INPUT_CONFIG")
fi

if [[ $INPUT_DEBUG == 'true' ]]; then
CZ_CMD+=('--debug')
fi
Expand Down