From e1186802dcd654d1833f7a135ec01286233194b6 Mon Sep 17 00:00:00 2001 From: groda Date: Sun, 20 Oct 2024 23:37:41 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=91=B7=20action=20to=20get=20info=20on=20?= =?UTF-8?q?runner?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/get_info_on_runner.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/workflows/get_info_on_runner.yml diff --git a/.github/workflows/get_info_on_runner.yml b/.github/workflows/get_info_on_runner.yml new file mode 100644 index 0000000..9e9b3dc --- /dev/null +++ b/.github/workflows/get_info_on_runner.yml @@ -0,0 +1,15 @@ +name: Get info on runner +run-name: Runner info +on: + # needs to be started manually + workflow_dispatch: +jobs: + List-Input-File: + runs-on: ubuntu-latest + steps: + - run: echo "🔶 🔶 🔶 🔶 🔶 🔶 🔶 🔶 🔶" + - run: lscpu + - run: echo "🔶 🔶 🔶 🔶 🔶 🔶 🔶 🔶 🔶" + - run: free -h + - run: echo "🍏 This job's status is ${{ job.status }}." + - run: echo "🎉 Woohoo! Your action is complete! Have an amazing day and happy coding! 🚀"