From 1360a05fd09da0a3847165ca925c3073c3f02655 Mon Sep 17 00:00:00 2001 From: smartjy Date: Fri, 5 Apr 2024 15:54:38 +0900 Subject: [PATCH] added github actions demo --- .github/workflows/demo.yaml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .github/workflows/demo.yaml diff --git a/.github/workflows/demo.yaml b/.github/workflows/demo.yaml new file mode 100644 index 0000000..57f7e0b --- /dev/null +++ b/.github/workflows/demo.yaml @@ -0,0 +1,11 @@ +name: Actions Runner Controller Demo +on: + workflow_dispatch: + +jobs: + Explore-GitHub-Actions: + # You need to use the INSTALLATION_NAME from the previous step + runs-on: arc-runner-set + steps: + - run: echo "🎉 This job uses runner scale set runners!" +