diff --git a/.github/workflows/validate_yamllint.yml b/.github/workflows/validate_yamllint.yml index c4528ef..a2d3add 100644 --- a/.github/workflows/validate_yamllint.yml +++ b/.github/workflows/validate_yamllint.yml @@ -35,11 +35,7 @@ jobs: run: | IFS=',' read -ra FILES <<< "${{ steps.changed-files.outputs.all_changed_files }}" for file in "${FILES[@]}"; do - if [[ "$file" =~ ^nspanel_esphome.*\.yaml$ ]] - || [[ "$file" =~ ^esphome/nspanel_esphome.*\.yaml$ ]] - || [[ "$file" =~ ^prebuilt/nspanel_esphome.*\.yaml$ ]] - || [[ "$file" == "nspanel_blueprint.yaml" ]]; - then + if [[ "$file" =~ ^nspanel_esphome.*\.yaml$ ]] || [[ "$file" =~ ^esphome/nspanel_esphome.*\.yaml$ ]] || [[ "$file" =~ ^prebuilt/nspanel_esphome.*\.yaml$ ]] || [[ "$file" == "nspanel_blueprint.yaml" ]]; then echo "Skipping $file" continue fi