spiff-arena/.github/workflows/container_retention_policy.yml

24 lines
786 B
YAML
Raw Normal View History

2023-09-26 20:02:08 -04:00
name: Delete old container images
on:
workflow_dispatch:
schedule:
- cron: "0 0 1 * *" # every day at midnight
jobs:
clean-ghcr:
name: Delete old unused container images
runs-on: ubuntu-latest
steps:
- name: Delete 'spiff' main containers older than a week
uses: snok/container-retention-policy@v2
with:
image-names: spiffworkflow-backend
cut-off: Two months ago UTC
account-type: org
org-name: sartography
keep-at-least: 1
filter-tags: "main-*"
2023-09-26 20:10:06 -04:00
# see https://github.com/settings/tokens/1335541013 under burnettk, classic personal access token with write:packages, read:packages, and delete:packages
2023-09-26 20:02:08 -04:00
token: ${{ secrets.PERSONAL_TOKEN_FOR_CONTAINER_CLEANUP }}