Skip to content

Commit

Permalink
Fix YAML formatting for clang-format action
Browse files Browse the repository at this point in the history
The YAML formatting for this action became invalid. This should correct
the formatting so that it correctly runs.

Fixes microsoft#6128
  • Loading branch information
llvm-beanz committed Jan 9, 2024
1 parent 849f8b8 commit 34eba14
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/clang-format-checker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@ jobs:
fetch_depth: 100 # Fetches only the last 10 commits

- name: "Listed files"
env: LISTED_FILES: ${{ steps.changed-files.outputs.all_changed_files }}
env:
LISTED_FILES: ${{ steps.changed-files.outputs.all_changed_files }}
run: |
echo "Formatting files:"
echo "$LISTED_FILES"
Expand Down

0 comments on commit 34eba14

Please sign in to comment.