Files
codex/.github/workflows/binary-blob-policy.yml
2026-03-11 12:49:45 -07:00

30 lines
784 B
YAML

name: binary-blob-policy
on:
pull_request: {}
jobs:
check:
name: Binary blob size policy
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Determine PR comparison range
id: range
shell: bash
run: |
set -euo pipefail
echo "base=$(git rev-parse HEAD^1)" >> "$GITHUB_OUTPUT"
echo "head=$(git rev-parse HEAD^2)" >> "$GITHUB_OUTPUT"
- name: Check changed binary blob sizes
run: |
python3 scripts/check_binary_blob_size.py \
--base "${{ steps.range.outputs.base }}" \
--head "${{ steps.range.outputs.head }}" \
--max-bytes 512000 \
--allowlist .github/binary-blob-allowlist.txt