Test container retention action #1
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
on: | |
push: | |
# schedule: | |
# - cron: "0 0 * * *" # run every day at midnight, utc | |
jobs: | |
delete-package-versions: | |
name: Delete package versions older than 4 weeks | |
runs-on: ubuntu-latest | |
steps: | |
- uses: snok/[email protected] | |
with: | |
account: tenstorrent | |
token: ${{ secrets.GH_TOKEN }} | |
image-names: "tt-mlir*" | |
cut-off: 4w | |
dry-run: true |