Skip to content

Commit e7470ed

Browse files
committed
THX-1138: Deprecate m some more.
1 parent 471c98f commit e7470ed

File tree

1 file changed

+2
-7
lines changed

1 file changed

+2
-7
lines changed

action.yml

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,8 @@ inputs:
1313
description: "Forces a PATCH increment if no other increment detected. NOTE: This is intended for development purposes only."
1414
required: false
1515
default: 'false'
16-
mono-repo-mode:
17-
description: "Enable semver matching against any tag structure that includes a valid semver string. Eg: <product-name>_<semver>"
18-
required: false
19-
default: 'false'
2016
mono-repo-product-name:
21-
description: "The product name to match against. For example, 'bob', would match the tags like 'bob_1.2.3'. Required if 'mono-repo-mode' is enabled."
17+
description: "Enables mono-repo mode. The product name to match against. EG: 'bob', match the tags like 'bob_1.2.3'."
2218
required: false
2319
default: ''
2420
mono-repo-product-path:
@@ -55,8 +51,7 @@ runs:
5551
opt=''
5652
[[ "${{ inputs.force-re-evaluate }}" == 'true' ]] && opt='$opt -f'
5753
[[ "${{ inputs.force-patch-increment }}" == 'true' ]] && opt='$opt -p'
58-
[[ "${{ inputs.mono-repo-mode }}" == 'true' ]] && opt='$opt -m'
59-
if [[ "${{ inputs.mono-repo-mode }}" == 'true' && -z ${{ inputs.mono-repo-product-name }} ]]; then
54+
if [[ -z ${{ inputs.mono-repo-product-name }} ]]; then
6055
echo -e "ERROR: 571 - mono-repo-product-name must be set and NOT null!"
6156
exit 1 || true
6257
fi

0 commit comments

Comments
 (0)