diff --git a/.github/workflows/comment-check.yml b/.github/workflows/comment-check.yml index 0787188..6e60412 100644 --- a/.github/workflows/comment-check.yml +++ b/.github/workflows/comment-check.yml @@ -124,10 +124,6 @@ jobs: # Use grep to find all comments containing Non-English characters # Check if the file contains '.md' and skip if it does grep -Pnr "$pattern" . $exclude_dirs $exclude_files | while read -r line ; do - # # If the filename contains '.md', skip it - # if echo "$line" | grep -q '\.md'; then - # continue - # fi # Write the result to the non_english_comments.txt file echo "$line" >> non_english_comments.txt done || true