-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(ga-image-sanitize): add ga to remove old docker images
- Loading branch information
Showing
1 changed file
with
94 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,94 @@ | ||
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 🚀 API Gateway image PR${{github.event.pull_request.number}} | ||
uses: bots-house/[email protected] | ||
with: | ||
owner: 01-edu | ||
name: content-api-gateway-app | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
tag: PR${{github.event.pull_request.number}} | ||
continue-on-error: true | ||
|
||
- name: 🗑️ Delete 🧩 Inventory App image PR${{github.event.pull_request.number}} | ||
uses: bots-house/[email protected] | ||
with: | ||
owner: 01-edu | ||
name: content-inventory-app | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
tag: PR${{github.event.pull_request.number}} | ||
continue-on-error: true | ||
|
||
- name: 🗑️ Delete 💻 Postgres DB image PR${{github.event.pull_request.number}} | ||
uses: bots-house/[email protected] | ||
with: | ||
owner: 01-edu | ||
name: content-postgres-db | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
tag: PR${{github.event.pull_request.number}} | ||
continue-on-error: true | ||
|
||
- name: 🗑️ Delete 🐰 Rabbitmq image PR${{github.event.pull_request.number}} | ||
uses: bots-house/[email protected] | ||
with: | ||
owner: 01-edu | ||
name: content-rabbitmq | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
tag: PR${{github.event.pull_request.number}} | ||
continue-on-error: true | ||
|
||
- name: 🗑️ Delete 💰 Billing App image PR${{github.event.pull_request.number}} | ||
uses: bots-house/[email protected] | ||
with: | ||
owner: 01-edu | ||
name: content-billing-app | ||
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 🚀 API Gateway image | ||
uses: bots-house/[email protected] | ||
with: | ||
owner: 01-edu | ||
name: content-api-gateway-app | ||
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 |