Skip to content

Cleanup untagged containers #125

Cleanup untagged containers

Cleanup untagged containers #125

name: Cleanup untagged containers
on:
schedule:
- cron: '0 2 * * *'
workflow_dispatch:
jobs:
delete_untagged_containers:
name: Delete untagged containers
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
package_name: ["tue-env-ros-noetic", "tue-env-ros-galactic", "tue-env-ros-humble"]
steps:
- uses: actions/delete-package-versions@v4
with:
package-name: ${{ matrix.package_name }}
package-type: container
delete-only-untagged-versions: true
min-versions-to-keep: 0