Skip to content

Cleanup Untagged Images #3

Cleanup Untagged Images

Cleanup Untagged Images #3

name: Cleanup Untagged Images
on:
# every sunday at 00:00
schedule:
- cron: "0 0 * * SUN"
# or manually
workflow_dispatch:
jobs:
delete-untagged-images:
name: Delete Untagged Images
runs-on: ubuntu-latest
strategy:
matrix:
image_name: [conda-jax, basicpy-docker-mcmicro]
steps:
- uses: bots-house/[email protected]
with:
# NOTE: at now only orgs is supported
owner: yfukai
name: ${{ matrix.image_name }}
# NOTE: using Personal Access Token
token: ${{ secrets.GITHUB_TOKEN }}
# Keep latest N untagged images
untagged-keep-latest: 2