This is an automated email from the ASF dual-hosted git repository.
lzljs3620320 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/paimon.git
The following commit(s) were added to refs/heads/master by this push:
new 0cc672115f [ci] Check no large binary files in repo (#6175)
0cc672115f is described below
commit 0cc672115f5ed9c73037fe6ab7f358d03763d4b4
Author: ChengHui Chen <[email protected]>
AuthorDate: Fri Aug 29 15:27:51 2025 +0800
[ci] Check no large binary files in repo (#6175)
---
.github/workflows/file-size-check.yml | 44 +++++++++++++++++++++++++++++++++++
1 file changed, 44 insertions(+)
diff --git a/.github/workflows/file-size-check.yml
b/.github/workflows/file-size-check.yml
new file mode 100644
index 0000000000..2007139735
--- /dev/null
+++ b/.github/workflows/file-size-check.yml
@@ -0,0 +1,44 @@
+################################################################################
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements. See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership. The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License. You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+################################################################################
+
+name: Check File Size
+
+on:
+ pull_request:
+
+jobs:
+ check-file-size:
+ runs-on: ubuntu-latest
+ steps:
+ - name: Checkout code
+ uses: actions/checkout@v4
+ with:
+ fetch-depth: 0
+
+ - name: Check file size
+ run: |
+ files=$(git diff --name-only ${{ github.event.pull_request.base.sha
}}...${{ github.event.pull_request.head.sha }})
+ for file in $files; do
+ if [ -f "$file" ]; then
+ size=$(ls -l "$file" | awk '{print $5}')
+ if [ "$size" -gt 1048576 ]; then
+ echo "Error: File $file is larger than 1MB ($size bytes)."
+ exit 1
+ fi
+ fi
+ done