Skip to content

Commit

Permalink
Merge pull request #1 from embeddings-benchmark/add_commit_check
Browse files Browse the repository at this point in the history
Create check_file_sizes.yml
  • Loading branch information
orionw authored Jul 6, 2024
2 parents 89eb83c + 3a7ca1d commit 4db3ead
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/check_file_sizes.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: Check File Sizes

on:
pull_request:
branches: [ main ]

jobs:
check-file-size:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0 # This ensures we get the full history

- name: Check file sizes
run: |
MAX_SIZE_BYTES=$((10 * 1024 * 1024)) # 10MB in bytes
# Get list of files changed in this PR
FILES_CHANGED=$(git diff --name-only --diff-filter=d ${{ github.event.pull_request.base.sha }} ${{ github.sha }})
# Check each file
for file in $FILES_CHANGED; do
if [ -f "$file" ]; then
size=$(stat -c%s "$file")
if [ $size -gt $MAX_SIZE_BYTES ]; then
echo "Error: $file is larger than 10MB (size: $size bytes)"
exit 1
fi
fi
done
echo "All files are within the size limit."

0 comments on commit 4db3ead

Please sign in to comment.