build(deps-dev): bump lint-staged from 15.2.11 to 15.3.0 #251
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: Cleanup GHCR docker packages on closed pull request | |
on: | |
pull_request_target: | |
types: | |
- closed | |
jobs: | |
cleanup-package: | |
name: Cleanup closed PR package | |
runs-on: ubuntu-latest | |
steps: | |
- name: Cleanup web package | |
uses: snok/container-retention-policy@v2 | |
with: | |
image-names: ${{ github.event.repository.name }}-web | |
cut-off: now UTC | |
timestamp-to-use: created_at | |
account-type: org | |
org-name: ${{ github.repository_owner }} | |
keep-at-least: 0 | |
filter-tags: pr-${{github.event.pull_request.number}} | |
token: ${{ secrets.SNOK_RETENTION_GITHUB_TOKEN }} |