Skip to content

Commit

Permalink
Use bash loop to split list of files
Browse files Browse the repository at this point in the history
  • Loading branch information
echoix committed Mar 6, 2024
1 parent 3ef5690 commit 2969237
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/clang-format-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,14 @@ jobs:
{
echo '### Changed files:'
echo '```'
echo '${{ steps.verify-changed-files.outputs.changed_files }}'
for i in $CHANGED_FILES
do
echo $i
done
echo '```'
} >> "$GITHUB_STEP_SUMMARY"
env:
CHANGED_FILES: ${{ steps.verify-changed-files.outputs.changed_files }}
- name: Add code suggestions
uses: reviewdog/action-suggester@3d7fde6859623ad6174df5fd662677a0eb63310a # v1.11.0
with:
Expand Down

0 comments on commit 2969237

Please sign in to comment.