Files
api/.github/workflows/cron.yml
T
2021-04-06 18:49:13 +09:30

16 lines
384 B
YAML

name: 'Delete old artifacts'
on:
schedule:
- cron: '0 0 * * *' # everyday at midnight
jobs:
delete-artifacts:
runs-on: ubuntu-latest
steps:
- uses: kolpav/purge-artifacts-action@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
# Keep the last day's worth of builds
expire-in: 1day # Setting this to 0 will delete all artifacts