mirror of
https://github.com/ibiqlik/action-yamllint.git
synced 2024-11-23 18:19:33 +01:00
35 lines
722 B
Bash
Executable file
35 lines
722 B
Bash
Executable file
#!/bin/bash -l
|
|
|
|
echo "======================"
|
|
echo "= Linting YAML files ="
|
|
echo "======================"
|
|
|
|
LOGFILE=yamllint.log
|
|
|
|
if [[ -n "$INPUT_CONFIG_FILE" ]]; then
|
|
options+=(-c "$INPUT_CONFIG_FILE")
|
|
fi
|
|
|
|
if [[ -n "$INPUT_CONFIG_DATA" ]]; then
|
|
options+=(-d "$INPUT_CONFIG_DATA")
|
|
fi
|
|
|
|
options+=(-f "$INPUT_FORMAT")
|
|
|
|
if [[ "$INPUT_STRICT" == "true" ]]; then
|
|
options+=(-s)
|
|
fi
|
|
|
|
if [[ "$INPUT_NO_WARNINGS" == "true" ]]; then
|
|
options+=(--no-warnings)
|
|
fi
|
|
|
|
# Enable globstar so ** globs recursively
|
|
shopt -s globstar
|
|
# Use the current directory by default
|
|
options+=("${INPUT_FILE_OR_DIR:-.}")
|
|
shopt -u globstar
|
|
|
|
yamllint "${options[@]}" | tee -a $LOGFILE
|
|
|
|
echo "::set-output name=logfile::$(realpath ${LOGFILE})"
|