compaREST/.github/workflows/remove-artifacts.yaml
2021-06-03 18:07:16 +03:00

18 lines
321 B
YAML

name: Remove old artifacts
on:
schedule:
- cron: '0 0 * * *'
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: '7 days'
skip-tags: true
skip-recent: 10