File tree Expand file tree Collapse file tree 1 file changed +2
-7
lines changed
Expand file tree Collapse file tree 1 file changed +2
-7
lines changed Original file line number Diff line number Diff 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 :
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
You can’t perform that action at this time.
0 commit comments