mirror of
https://github.com/unraid/api.git
synced 2026-04-29 11:45:49 -05:00
16 lines
384 B
YAML
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
|