Dalamud/.github/workflows/delete-artifacts.yml
2021-04-10 03:35:20 +02:00

19 lines
381 B
YAML

name: Remove old artifacts
on:
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@24dc23384a1fa6a058b79c73727ae0cb2200ca4c
with:
age: '1 month'
skip-tags: true
skip-recent: 3