From 305fbb37e7617d76c36caef9cc75fa9985fcc8c9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gerg=C5=91=20M=C3=B3ricz?= Date: Thu, 20 Feb 2025 15:08:32 +0100 Subject: [PATCH] temp (#1218) --- .github/workflows/ghcr-clean.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/ghcr-clean.yml diff --git a/.github/workflows/ghcr-clean.yml b/.github/workflows/ghcr-clean.yml new file mode 100644 index 00000000..c80cb3b6 --- /dev/null +++ b/.github/workflows/ghcr-clean.yml @@ -0,0 +1,18 @@ +name: Cleanup Untagged Images + +on: + workflow_dispatch: + +jobs: + delete-untagged-images: + name: Delete Untagged Images + runs-on: ubuntu-latest + steps: + - uses: bots-house/ghcr-delete-image-action@v1.1.0 + with: + owner: mendableai + name: firecrawl + # NOTE: using Personal Access Token + token: ${{secrets.GITHUB_TOKEN}} + # Keep latest N untagged images + untagged-keep-latest: 5 \ No newline at end of file