Spaces:
Sleeping
Sleeping
| name: Check File Size | |
| on: | |
| pull_request: | |
| branches: [main] | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| pull-requests: read | |
| jobs: | |
| check-size: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| pull-requests: write | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Check large files | |
| if: github.event_name == 'pull_request' | |
| uses: ActionsDesk/lfs-warning@v2.0 | |
| with: | |
| filesizelimit: 10485760 # 10MB limit for HF Spaces compatibility | |