Skip to content

chore: 🧑‍💻 add cypress screenshots to gitignore #28

chore: 🧑‍💻 add cypress screenshots to gitignore

chore: 🧑‍💻 add cypress screenshots to gitignore #28

Workflow file for this run

name: Clean registry
on:
pull_request:
types:
- closed
jobs:
clean-registry:
name: Delete untagged images
if: github.event.pull_request.merged == true
runs-on: ubuntu-latest
steps:
- name: Delete from backend package
uses: vlaurin/action-ghcr-prune@main
with:
token: ${{ secrets.PERSO_ACCESS_TOKEN }}
organization: dnum-mi
container: basegun/basegun-backend
dry-run: false
prune-untagged: true
- name: Delete from frontend package
uses: vlaurin/action-ghcr-prune@main
with:
token: ${{ secrets.PERSO_ACCESS_TOKEN }}
organization: dnum-mi
container: basegun/basegun-frontend
dry-run: false
prune-untagged: true