From aaddabb226467c25221f76c412da84bd09aa9b68 Mon Sep 17 00:00:00 2001 From: Ryan Boehning <1250684+ryboe@users.noreply.github.com> Date: Sun, 22 Feb 2026 15:57:26 -0800 Subject: [PATCH] fix: bad substitution in cleanup.yml The substitution should've been `${{ github.repository }}`, not the event name. --- .github/workflows/cleanup.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/cleanup.yml b/.github/workflows/cleanup.yml index 75fb771..0e27b18 100644 --- a/.github/workflows/cleanup.yml +++ b/.github/workflows/cleanup.yml @@ -14,7 +14,7 @@ jobs: - name: Delete untagged images uses: actions/delete-package-versions@v5 with: - package-name: ${{ github.event.repository.name }} + package-name: ${{ github.repository }} package-type: container delete-only-untagged-versions: true min-versions-to-keep: 0