Skip to content

Delete old container images #439

Delete old container images

Delete old container images #439

Workflow file for this run

name: Delete old container images
on:
schedule:
- cron: "36 5 * * *"
workflow_dispatch:
jobs:
clean-ghcr:
name: Delete old unused container images
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
# This is used to complete the identity challenge
# with sigstore/fulcio when running outside of PRs.
id-token: write
steps:
- name: Delete old images
uses: snok/container-retention-policy@v2
with:
image-names: mqtt_exporter
cut-off: One month ago UTC
keep-at-least: 1
account-type: personal
token: ${{ secrets.PAT }}