CON-1914 update broken link in evasion audit #46
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: π§Ό Sanitize β Generated Docker Images | |
on: | |
pull_request: | |
types: [closed] | |
workflow_dispatch: | |
inputs: | |
keep-last: | |
description: > | |
Delete all untagged images except the last N | |
required: false | |
default: "1" | |
jobs: | |
delete-pr-tagged-image: | |
name: ποΈ Delete PR${{github.event.pull_request.number}} Image | |
runs-on: ubuntu-latest | |
steps: | |
- name: ποΈ Delete π» Sh image PR${{github.event.pull_request.number}} | |
uses: bots-house/[email protected] | |
with: | |
owner: 01-edu | |
name: test-sh | |
token: ${{ secrets.GITHUB_TOKEN }} | |
tag: PR${{github.event.pull_request.number}} | |
continue-on-error: true | |
- name: ποΈ Delete π JS image PR${{github.event.pull_request.number}} | |
uses: bots-house/[email protected] | |
with: | |
owner: 01-edu | |
name: test-js | |
token: ${{ secrets.GITHUB_TOKEN }} | |
tag: PR${{github.event.pull_request.number}} | |
continue-on-error: true | |
- name: ποΈ Delete 𧩠DOM image PR${{github.event.pull_request.number}} | |
uses: bots-house/[email protected] | |
with: | |
owner: 01-edu | |
name: test-dom | |
token: ${{ secrets.GITHUB_TOKEN }} | |
tag: PR${{github.event.pull_request.number}} | |
continue-on-error: true | |
delete-untagged-images: | |
name: π₯ Clear Untagged Images | |
needs: delete-pr-tagged-image | |
runs-on: ubuntu-latest | |
steps: | |
- name: π₯ Clear all untagged π» Sh images | |
uses: bots-house/[email protected] | |
with: | |
owner: 01-edu | |
name: test-sh | |
token: ${{ secrets.GITHUB_TOKEN }} | |
untagged-keep-latest: ${{ github.event.inputs.keep-last }} | |
continue-on-error: true | |
- name: π₯ Clear all untagged π JS images | |
uses: bots-house/[email protected] | |
with: | |
owner: 01-edu | |
name: test-js | |
token: ${{ secrets.GITHUB_TOKEN }} | |
untagged-keep-latest: ${{ github.event.inputs.keep-last }} | |
continue-on-error: true | |
- name: π₯ Clear all untagged 𧩠DOM images | |
uses: bots-house/[email protected] | |
with: | |
owner: 01-edu | |
name: test-dom | |
token: ${{ secrets.GITHUB_TOKEN }} | |
untagged-keep-latest: ${{ github.event.inputs.keep-last }} | |
continue-on-error: true |