Skip to content

Commit

Permalink
fix: add curly braces
Browse files Browse the repository at this point in the history
  • Loading branch information
botanical committed Feb 15, 2025
1 parent 80cad71 commit f825376
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ jobs:
ADDED_FILES: ${{ steps.changed-files.outputs.added_files }}
ADDED_FILES_COUNT: $${{ steps.changed-files.outputs.added_files_count}}
run: |
if [ $ADDED_FILES_COUNT eq 0 ]; then
if [ ${ADDED_FILES_COUNT} eq 0 ]; then
echo "🕵️ No new files found. Exiting workflow."
exit 0
for file in ${ADDED_FILES}; do
Expand Down

0 comments on commit f825376

Please sign in to comment.