mirror of
https://github.com/alexta69/metube.git
synced 2026-09-21 21:45:04 +00:00
0dc9b0b3d6
Runs only when README.md changes (which the build workflow ignores), so the limit is checked exactly when it can be exceeded. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
22 lines
439 B
YAML
22 lines
439 B
YAML
name: readme-size
|
|
|
|
on:
|
|
push:
|
|
paths:
|
|
- 'README.md'
|
|
pull_request:
|
|
paths:
|
|
- 'README.md'
|
|
|
|
jobs:
|
|
check-size:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v7
|
|
- name: Check README stays under Docker Hub's 25k character limit
|
|
run: |
|
|
size=$(wc -c < README.md)
|
|
echo "README.md is ${size} bytes (limit 25000)"
|
|
test "$size" -lt 25000
|