ghostty/.github/workflows/clean-artifacts.yml
2023-02-27 14:54:44 -08:00

18 lines
354 B
YAML

name: Clean Artifacts
on:
schedule:
# Every 6 hours
- cron: '0 */6 * * *'
workflow_dispatch:
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 week'
skip-tags: true
skip-recent: 5