We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eb2539c commit 5db816fCopy full SHA for 5db816f
.github/workflows/format_check.yml
@@ -40,10 +40,10 @@ jobs:
40
safe_output: true
41
- name: List changed files
42
if: steps.changed-files.outputs.any_changed == 'true'
43
- run: echo {{ steps.changed-files.outputs.all_changed_files }}
+ run: echo ${{ steps.changed-files.outputs.all_changed_files }}
44
- name: Run clang-format check
45
46
uses: pillo79/clang-format-action@mod
47
with:
48
clang-format-version: '19'
49
- check-files: steps.changed-files.outputs.all_changed_files
+ check-files: ${{ steps.changed-files.outputs.all_changed_files }}
0 commit comments