From 1d896fc8094bb986ed6af0e3d34dcc559b1346b5 Mon Sep 17 00:00:00 2001 From: "marcel.henselin" Date: Fri, 27 Feb 2026 10:19:49 +0000 Subject: [PATCH] feat: add runner stats Signed-off-by: marcel.henselin --- .github/workflows/runnerstats.yaml | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 .github/workflows/runnerstats.yaml diff --git a/.github/workflows/runnerstats.yaml b/.github/workflows/runnerstats.yaml new file mode 100644 index 00000000..330e6e0f --- /dev/null +++ b/.github/workflows/runnerstats.yaml @@ -0,0 +1,29 @@ +name: Runner stats + +on: + workflow_dispatch: + +jobs: + stats-own: + name: "Get own runner stats" + runs-on: ubuntu-latest + steps: + - name: Install needed tools + run: | + apt-get -y -qq update + apt-get -y -qq install inxi + + - name: Show stats + run: inxi + + stats-stackit: + name: "Get STACKIT runner stats" + runs-on: stackit-docker + steps: + - name: Install needed tools + run: | + apt-get -y -qq update + apt-get -y -qq install inxi + + - name: Show stats + run: inxi -- 2.49.1