Skip to content

Commit 798b74f

Browse files
authored
Remove executable check from the PR check (#14425)
1 parent f1ff080 commit 798b74f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/check-files.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ jobs:
9797
# Additional checks for binary files and large files
9898
if [[ -f "$file" ]]; then
9999
# Check if file is binary (but allow .sh files even if executable)
100-
if [[ "$extension" != "sh" ]] && file "$file" | grep -q "binary\|executable\|archive\|compressed"; then
100+
if file "$file" | grep -q "binary\|archive\|compressed"; then
101101
should_be_in_blob_store=true
102102
fi
103103

0 commit comments

Comments
 (0)