Skip to content

DEV-5380 Change go test image to handle new and old version of the runner #25

DEV-5380 Change go test image to handle new and old version of the runner

DEV-5380 Change go test image to handle new and old version of the runner #25

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 image PR${{github.event.pull_request.number}}
uses: bots-house/[email protected]
with:
owner: 01-edu
name: test-go
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 images
uses: bots-house/[email protected]
with:
owner: 01-edu
name: test-go
token: ${{ secrets.GITHUB_TOKEN }}
untagged-keep-latest: ${{ github.event.inputs.keep-last }}
continue-on-error: true