Skip to content

Delete Untagged Images #8163

Delete Untagged Images

Delete Untagged Images #8163

name: Delete Untagged Images
on:
schedule:
- cron: '0 * * * *'
jobs:
clean-ghcr:
name: Delete untagged container images
runs-on: ubuntu-latest
steps:
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to GitHub Container Registry with PAT_TOKEN
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.CONTAINER_RETENTION_POLICY_TOKEN }}
- name: Delete all containers from repository without tags
uses: Chizkiyahu/delete-untagged-ghcr-action@v5
with:
token: ${{ secrets.CONTAINER_RETENTION_POLICY_TOKEN }}
repository_owner: ${{ github.repository_owner }}
repository: ${{ github.repository }}
untagged_only: true
owner_type: user
except_untagged_multiplatform: true