From 187e5834074aab782dd94fe81ff0e9de1cfc98a2 Mon Sep 17 00:00:00 2001 From: Greg Roth Date: Mon, 27 Nov 2023 14:02:06 -0800 Subject: [PATCH] Update format checker action Updates the format checker action yaml to conform to our policies --- .github/workflows/clang-format-checker.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/clang-format-checker.yml b/.github/workflows/clang-format-checker.yml index 4fce5ac168..40af2f1811 100644 --- a/.github/workflows/clang-format-checker.yml +++ b/.github/workflows/clang-format-checker.yml @@ -26,9 +26,10 @@ jobs: fetch_depth: 100 # Fetches only the last 10 commits - name: "Listed files" + env: LISTED_FILES: ${{ steps.changed-files.outputs.all_changed_files }} run: | echo "Formatting files:" - echo "${{ steps.changed-files.outputs.all_changed_files }}" + echo $LISTED_FILES - name: Install clang-format uses: aminya/setup-cpp@v1