1
0
Fork 0
mirror of https://github.com/karancode/yamllint-github-action.git synced 2024-08-16 10:19:48 +02:00
This commit is contained in:
karancode 2019-12-27 13:16:52 +09:00
parent 7529b44059
commit 791dcfcb43

View file

@ -8,7 +8,7 @@ function parse_inputs {
fi fi
yamllint_strict='' yamllint_strict=''
if [ "${INPUT_YAMLLINT_STRICT}" != "0" ] || [ "${INPUT_YAMLLINT_STRICT}" != "false" ]; then if [ "${INPUT_YAMLLINT_STRICT}" == "1" ] || [ "${INPUT_YAMLLINT_STRICT}" == "true" ]; then
yamllint_strict="--strict" yamllint_strict="--strict"
fi fi