mirror of
https://github.com/karancode/yamllint-github-action.git
synced 2024-08-16 10:19:48 +02:00
bugfix
This commit is contained in:
parent
7529b44059
commit
791dcfcb43
1 changed files with 1 additions and 1 deletions
|
@ -8,7 +8,7 @@ function parse_inputs {
|
|||
fi
|
||||
|
||||
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"
|
||||
fi
|
||||
|
||||
|
|
Loading…
Reference in a new issue