Workflow file for this run
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: Delete old container images | |
on: | |
schedule: | |
- cron: '0 0 * * 2' # runs every Tuesday | |
workflow_dispatch: | |
push: | |
branches: | |
- ghcr-clean | |
jobs: | |
clean-ghcr: | |
name: Delete old unused container images | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Delete containers older than a Month | |
uses: snok/container-retention-policy@v2 | |
with: | |
image-names: traction-plugins-acapy, traction-tenant-proxy, traction-tenant-ui | |
cut-off: One month ago UTC | |
account-type: org | |
org-name: ${{ github.repository_owner}} | |
skip-tags: pr-* , *.*.* | |
token: ${{ secrets.PACKAGE_DELETE_TOKEN }} |