From 185ac0ae3214476abe1a4a1d2217d37c66bb2089 Mon Sep 17 00:00:00 2001 From: Michael Chiou Date: Fri, 21 Jun 2024 16:40:50 -0700 Subject: [PATCH] #0: add sample workflow to test ci vm runner --- .github/workflows/hello-world.yaml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/hello-world.yaml diff --git a/.github/workflows/hello-world.yaml b/.github/workflows/hello-world.yaml new file mode 100644 index 000000000..a9c3b78a1 --- /dev/null +++ b/.github/workflows/hello-world.yaml @@ -0,0 +1,19 @@ +name: "hello world workflow" + +on: + workflow_call: + workflow_dispatch: + pull_request: + +permissions: + actions: read + contents: read + pages: write + id-token: write + +jobs: + hello-world: + runs-on: ["in-service", "n150"] + steps: + - name: Hello World + run: echo "Hello World!" \ No newline at end of file