Update .gitea/workflows/yaml-lint.yml

This commit is contained in:
2026-01-26 01:09:00 +00:00
parent 6a78fb1d49
commit dec9be5fad

View File

@ -95,5 +95,9 @@ jobs:
for file in $files; do
echo "$file is being checked for yamllint issues."
yamllint -f parsable $file
done
yamllint -f parsable $file || failed_check=true && \
echo "$file: detected yamllint errors!"
done
if [ "$failed_check" = true ]; then
exit 1
fi