diff --git a/.gitea/workflows/yaml-lint.yml b/.gitea/workflows/yaml-lint.yml index 47b09f7f8..943e377b3 100644 --- a/.gitea/workflows/yaml-lint.yml +++ b/.gitea/workflows/yaml-lint.yml @@ -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!"; }