Delete Unused Caches #996
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
name: Delete Unused Caches | |
on: | |
schedule: | |
- cron: "30 1 * * *" | |
workflow_dispatch: | |
jobs: | |
delete: | |
runs-on: ubuntu-latest | |
steps: | |
# Do other steps like checkout, install, compile, etc. | |
- uses: MyAlbum/[email protected] | |
with: | |
max-age: 1800 # Cache max 7 days since last use (this is the default) | |
debug: true # Set to true to output debug info |