mirror of
https://github.com/searxng/searxng
synced 2024-01-01 19:24:07 +01:00
16 lines
453 B
YAML
16 lines
453 B
YAML
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:
|
|
sync-to-hub:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Check large files
|
|
uses: ActionsDesk/lfs-warning@v2.0
|
|
with:
|
|
filesizelimit: 10485760 # this is 10MB so we can sync to HF Spaces
|