🌶️ Hotfix #30
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Check file size | |
on: | |
# On pull requests to the main branch | |
pull_request: | |
branches: [main] | |
# # Or directly On pushes to the main branch | |
# push: | |
# branches: [main] | |
# to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
# to run this workflow from another workflow | |
workflow_call: | |
jobs: | |
check-file-size: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Check large files | |
uses: ppremk/[email protected] | |
with: | |
filesizelimit: 10MB # this is 10MB so we can sync to HF Spaces |