Skip to content

Commit

Permalink
Create check-file-size.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
xKhronoz authored Jan 25, 2024
1 parent 45e5f22 commit 63e88af
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/check-file-size.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Check file size
on: # or directly `on: [push]` to run the action on every push on any branch
pull_request:
branches: [main]

# to run this workflow manually from the Actions tab
workflow_dispatch:

jobs:
check-file-size:
runs-on: ubuntu-latest
steps:
- name: Check large files
uses: ActionsDesk/[email protected]
with:
filesizelimit: 10485760 # this is 10MB so we can sync to HF Spaces

0 comments on commit 63e88af

Please sign in to comment.