From 8f611d6e56dfccba7b65274989773677b60a9f18 Mon Sep 17 00:00:00 2001 From: ReenigneArcher <42013603+ReenigneArcher@users.noreply.github.com> Date: Thu, 31 Jul 2025 18:48:19 -0400 Subject: [PATCH] fix(cmake-lint): exclude third-party directory --- .github/workflows/__call-common-lint.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/__call-common-lint.yml b/.github/workflows/__call-common-lint.yml index f02e8438..ce1e8e4a 100644 --- a/.github/workflows/__call-common-lint.yml +++ b/.github/workflows/__call-common-lint.yml @@ -222,7 +222,11 @@ jobs: echo "::add-matcher::.github/matchers/cmake-lint.json" set +e error=0 - cmake-lint --line-width 120 --tab-size 4 ${{ steps.cmake_files.outputs.found_files }} + cmake-lint \ + --exclude third-party \ + --line-width 120 \ + --tab-size 4 \ + ${{ steps.cmake_files.outputs.found_files }} error=$? set -e echo "::remove-matcher owner=cmake-lint::"