diff --git a/.gitea/workflows/yaml-lint.yml b/.gitea/workflows/yaml-lint.yml index e6a390f00..ea7231966 100644 --- a/.gitea/workflows/yaml-lint.yml +++ b/.gitea/workflows/yaml-lint.yml @@ -98,8 +98,8 @@ jobs: echo "Linting changed files:" echo "$files" - # for file in $files; do - for file in ${{ steps.changed-files.outputs.changed_files }}; do + # for file in ${{ steps.changed-files.outputs.changed_files }}; do + for file in $files; do echo "$file is being checked for yamllint issues." yamllint -f parsable $file || \ { failed_check=true ; echo "$file: detected yamllint errors!"; }