Prune untagged images #66
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: Prune untagged images | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: '0 0 * * 6' # every Saturday at midnight | |
jobs: | |
purge-image: | |
name: Prune untagged images | |
runs-on: ubuntu-latest | |
steps: | |
- name: Delete all containers from repository without tags | |
uses: Chizkiyahu/delete-untagged-ghcr-action@v4 | |
with: | |
token: ${{ secrets.PAT_TOKEN }} | |
package_name: 'harvest' | |
untagged_only: true | |
owner_type: user |