Remove old artifacts #148
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Github Actions - Remove old artifacts | |
# Source: https://github.com/marketplace/actions/remove-artifacts | |
--- | |
name: Remove old artifacts | |
on: | |
schedule: | |
# Every day at 1am | |
- cron: '0 1 * * *' | |
permissions: | |
actions: write | |
jobs: | |
remove-old-artifacts: | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
steps: | |
- name: Remove old artifacts | |
uses: c-hive/gha-remove-artifacts@v1 | |
with: | |
# How long should an artifact be kept? | |
# '<number> <unit>', e.g. 5 days, 2 years, 90 seconds, | |
# parsed by Moment.js | |
age: '2 days' | |
# Tagged artifacts (releases) are always kept | |
skip-tags: true | |
# Always keep the most recent artifact | |
skip-recent: 1 |