Skip to content

Commit

Permalink
321
Browse files Browse the repository at this point in the history
  • Loading branch information
mo3et committed Sep 19, 2024
1 parent 1192020 commit 55d5c73
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/comment-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ jobs:
grep_output=$(grep -PnH "$pattern" "$file" || true)
if [ -n "$grep_output" ]; then
echo "$grep_output" >> non_english_comments.txt # Save to file
NON_ENGLISH_COMMENTS="$NON_ENGLISH_COMMENTS$grep_output\n" # Save to variable
NON_ENGLISH_COMMENTS="$NON_ENGLISH_COMMENTS$(echo "$grep_output" | sed 's/$/ /')\n" # Save to variable with Markdown formatting
fi
done
Expand Down

0 comments on commit 55d5c73

Please sign in to comment.