Skip to content

Cleanup Untagged Images #6

Cleanup Untagged Images

Cleanup Untagged Images #6

Workflow file for this run

name: Cleanup Untagged Images
on:
workflow_dispatch: {}
schedule:
- cron: '1 23 * * *'
permissions:
packages: write
jobs:
cleanup:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Remove untagged images
run: ./.github/tidy-images.sh "${{ github.repository_owner }}" "ci-kernels"
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}