Bump ch.qos.logback:logback-classic from 1.5.15 to 1.5.16 #146
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 PR Images | |
on: | |
pull_request: | |
types: [closed] | |
jobs: | |
purge-image: | |
strategy: | |
matrix: | |
name: | |
[ | |
camunda-formio-react-app, | |
camunda-formio-example, | |
camunda-formio-content, | |
] | |
name: Delete image from ghcr.io | |
runs-on: ubuntu-latest | |
steps: | |
- name: Delete image | |
uses: bots-house/ghcr-delete-image-action@v1.1.0 | |
with: | |
# NOTE: at now only orgs is supported | |
owner: softcannery | |
name: camunda-formio-accelerator/${{ matrix.name }} | |
# NOTE: using Personal Access Token | |
token: ${{ secrets.GH_TOKEN }} | |
tag: pr-${{github.event.pull_request.number}} | |
- name: Delete Untagged Images | |
uses: bots-house/ghcr-delete-image-action@v1.1.0 | |
with: | |
# NOTE: at now only orgs is supported | |
owner: softcannery | |
name: camunda-formio-accelerator/${{ matrix.name }} | |
# NOTE: using Personal Access Token | |
token: ${{ secrets.GH_TOKEN }} | |
# Keep latest N untagged images | |
untagged-keep-latest: 1 |