Update .gitea/workflows/yaml-lint.yml

This commit is contained in:
2026-01-26 14:28:05 +00:00
parent a58fbfb3c6
commit 01addad3ab

View File

@ -98,7 +98,7 @@ jobs:
echo "$files"
# for file in $files; do
for file in ${{ steps.changed-files.outputs.changed_files }};
for file in ${{ steps.changed-files.outputs.changed_files }}; do
echo "$file is being checked for yamllint issues."
yamllint -f parsable $file || \
{ failed_check=true ; echo "$file: detected yamllint errors!"; }