From 3f122308fcaa8594e7d3ff389a3ec181a6e4fe06 Mon Sep 17 00:00:00 2001 From: Adam Warner Date: Thu, 21 Sep 2023 01:13:11 +0100 Subject: [PATCH] Add action to clean up untagged (non-multiarch) images from GHCR Signed-off-by: Adam Warner --- .github/workflows/housekeeping.yml | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 .github/workflows/housekeeping.yml diff --git a/.github/workflows/housekeeping.yml b/.github/workflows/housekeeping.yml new file mode 100644 index 0000000..bb6cf58 --- /dev/null +++ b/.github/workflows/housekeeping.yml @@ -0,0 +1,28 @@ +name: housekeeping +on: + workflow_dispatch: + +jobs: + housekeeping: + runs-on: ubuntu-latest + steps: + - + name: Set up Docker Buildx + uses: docker/setup-buildx-action@v2 + - + name: Login to GitHub Container Registry with PAT_TOKEN + uses: docker/login-action@v2 + with: + registry: ghcr.io + username: ${{ github.actor }} + password: ${{ secrets.PAT_TOKEN }} + - + name: Delete all containers from repository without tags + uses: Chizkiyahu/delete-untagged-ghcr-action@v2 + with: + token: ${{ secrets.PAT_TOKEN }} + repository_owner: ${{ github.repository_owner }} + repository: ${{ github.repository }} + untagged_only: true + owner_type: org # or user + except_untagged_multiplatform: true \ No newline at end of file