txtdot/.github/workflows/delete-packages.yml
2024-08-05 21:02:07 +03:00

22 lines
418 B
YAML

name: Delete untagged packages
on:
workflow_run:
workflows:
- build-check
- Create and publish a Docker image
- format-check
types:
- completed
jobs:
delete-untagged-packages:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- uses: dataaxiom/ghcr-cleanup-action@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}