Skip to content

core: add table creation timestamp to table properties #14

core: add table creation timestamp to table properties

core: add table creation timestamp to table properties #14

Workflow file for this run

################################################################################
# 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