Add react-native-video-trim (#1684) #135
This file contains hidden or 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: "[VERCEL] Cleanup data blobs" | |
on: | |
push: | |
branches: [main] | |
schedule: | |
# Run once a week on Thursday at midnight - https://crontab.guru/#0_0_*_*_2 | |
- cron: '0 0 * * 2' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Bun | |
uses: oven-sh/setup-bun@v2 | |
- name: Install dependencies | |
run: bun install | |
- name: Cleanup data blobs | |
run: bun ci:cleanup-blobs | |
env: | |
BLOB_READ_WRITE_TOKEN: ${{ secrets.BLOB_READ_WRITE_TOKEN }} |