Added cleanup workflow
Some checks failed
FHIR IG CI/CD Pipeline with Version Persistence / build-ig (push) Failing after 29s
FHIR IG CI/CD Pipeline with Version Persistence / deploy (push) Has been skipped

This commit is contained in:
2026-03-07 01:40:48 +06:00
parent c195390fe7
commit b89620b4ed

View File

@@ -0,0 +1,12 @@
name: Emergency Host Cleanup
on: workflow_dispatch # Manual trigger
jobs:
cleanup:
runs-on: ubuntu-latest # or whatever label your full runner uses
steps:
- name: Prune Docker Host
# This is the most effective command to clear the 'overlay' 100% full error
run: |
docker system prune -af --volumes
df -h