Purge GitHub container registry. #599
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Purge GitHub container registry. | |
on: | |
workflow_dispatch: | |
# Runs daily at midnight | |
schedule: | |
- cron: '0 0 * * *' | |
jobs: | |
purge-images: | |
if: github.repository == 'veraPDF/veraPDF-rest' | |
name: Delete old untagged images from ghcr.io | |
runs-on: ubuntu-latest | |
steps: | |
- name: Delete all PR containers older than a week | |
uses: snok/container-retention-policy@v2 | |
with: | |
image-names: rest, arlington | |
cut-off: 1 week ago UTC | |
account-type: org | |
org-name: veraPDF | |
keep-at-least: 1 | |
skip-tags: latest | |
untagged-only: false | |
token: ${{ secrets.PAT }} |