renovate-runner/.gitea/workflows/delete-artifacts.yaml
Jan Gleytenhoover 3649038488
Some checks failed
Remove old artifacts / remove-old-artifacts (push) Failing after 3s
renovate / renovate (push) Has been cancelled
Update .gitea/workflows/delete-artifacts.yaml
2024-08-17 09:19:27 +00:00

22 lines
496 B
YAML

name: Remove old artifacts
on:
push:
schedule:
# Every day at 1am
- cron: '0 1 * * *'
jobs:
remove-old-artifacts:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: Remove old artifacts
uses: c-hive/gha-remove-artifacts@v1
with:
age: '1 month' # '<number> <unit>', e.g. 5 days, 2 years, 90 seconds, parsed by Moment.js
GITHUB_TOKEN: ${{ gitea.TOKEN }}
# Optional inputs
# skip-tags: true
# skip-recent: 5