Scheduled: Cleanup #12
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: "Scheduled: Cleanup" | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: "0 4 * * 1" | |
permissions: | |
packages: write | |
jobs: | |
cleanup: | |
name: Cleanup untagged images | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Login to GHCR | |
uses: docker/login-action@v3 | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Delete all containers from package without tags | |
uses: Chizkiyahu/delete-untagged-ghcr-action@v4 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
repository_owner: ${{ github.repository_owner }} | |
repository: ${{ github.repository }} | |
untagged_only: true | |
owner_type: user | |
except_untagged_multiplatform: true |