From c2792eeb82ee6ee591a43f88f9826d5fe1bf1567 Mon Sep 17 00:00:00 2001
From: XargonWan <xargonwan@gmail.com>
Date: Tue, 12 Dec 2023 14:21:02 +0100
Subject: [PATCH] WORKFLOW: added a runner cleanup job

---
 .github/workflows/runner-cleanup.yml | 12 ++++++++++++
 1 file changed, 12 insertions(+)
 create mode 100644 .github/workflows/runner-cleanup.yml

diff --git a/.github/workflows/runner-cleanup.yml b/.github/workflows/runner-cleanup.yml
new file mode 100644
index 00000000..dbccdad3
--- /dev/null
+++ b/.github/workflows/runner-cleanup.yml
@@ -0,0 +1,12 @@
+name: "Runner Cleanup"
+
+on:
+  workflow_dispatch:
+
+jobs:
+  Cleanup:
+    runs-on: self-hosted
+    steps:
+    - name: Self Hosted Runner Post Job Cleanup Action
+      uses: TooMuch4U/actions-clean@v2.1
+            
\ No newline at end of file