diff --git a/.github/workflows/test_runner.yml b/.github/workflows/test_runner.yml new file mode 100644 index 00000000..c2e06faf --- /dev/null +++ b/.github/workflows/test_runner.yml @@ -0,0 +1,12 @@ +name: Print Hostname + +on: + workflow_dispatch: + +jobs: + build: + runs-on: self-hosted + + steps: + - name: Print hostname + run: echo "The hostname is $(hostname)"