Skip to content

Commit aaddabb

Browse files
committed
fix: bad substitution in cleanup.yml
The substitution should've been `${{ github.repository }}`, not the event name.
1 parent 7dd9114 commit aaddabb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/cleanup.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- name: Delete untagged images
1515
uses: actions/delete-package-versions@v5
1616
with:
17-
package-name: ${{ github.event.repository.name }}
17+
package-name: ${{ github.repository }}
1818
package-type: container
1919
delete-only-untagged-versions: true
2020
min-versions-to-keep: 0

0 commit comments

Comments
 (0)