Skip to content

Commit 21bbc1c

Browse files
committed
Use the changed_files output which respects the files-ignore filter
1 parent 1d30261 commit 21bbc1c

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/build.yaml

+2-1
Original file line numberDiff line numberDiff line change
@@ -215,11 +215,12 @@ jobs:
215215
# Exclude all files under "third_party/"
216216
files-ignore: |
217217
third_party/
218+
218219
- name: Clang-tidy validation
219220
# NOTE: clang-tidy crashes on CodegenDataModel_Write due to Nullable/std::optional check.
220221
# See https://github.com/llvm/llvm-project/issues/97426
221222
env:
222-
ALL_CHANGED_FILES: ${{ steps.changed-files.outputs.all_changed_files }}
223+
ALL_CHANGED_FILES: ${{ steps.changed-files.outputs.changed_files }}
223224
run: |
224225
touch out/changed_files.txt
225226
for file in ${ALL_CHANGED_FILES}; do

0 commit comments

Comments
 (0)