Bump pino from 8.15.1 to 9.4.0 #108
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: Purge Pull Request Image | |
# https://docs.github.com/en/actions/reference/events-that-trigger-workflows#registry_package | |
# Run cleanup job if a new package was published or updated | |
on: | |
pull_request: | |
types: [closed] | |
jobs: | |
purge_pr_image: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Purge Pull Request Image | |
uses: vlaurin/[email protected] | |
with: | |
token: ${{ secrets.GHCR_TOKEN}} | |
organization: ${{ github.repository_owner}} | |
container: ${{ github.event.repository.name }} | |
prune-tags-regexes: pr-${{github.event.pull_request.number}}$ |