From 3babe9da88da828b09cb5db3c2f3a1ee21b97487 Mon Sep 17 00:00:00 2001 From: "Hasko, Vladimir" Date: Mon, 26 Jan 2026 14:59:16 +0000 Subject: [PATCH] Update .gitea/workflows/yaml-lint.yml --- .gitea/workflows/yaml-lint.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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!"; }