From 1707405e9e7e543ff1ac6a86e096f713ef336812 Mon Sep 17 00:00:00 2001 From: Ethel Owusu <137795060+eowusu1@users.noreply.github.com> Date: Wed, 22 Nov 2023 10:22:37 +0000 Subject: [PATCH 1/2] Create hello-world.yml --- .github/workflows/hello-world.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .github/workflows/hello-world.yml diff --git a/.github/workflows/hello-world.yml b/.github/workflows/hello-world.yml new file mode 100644 index 0000000..9d28368 --- /dev/null +++ b/.github/workflows/hello-world.yml @@ -0,0 +1,11 @@ +name: say Hello World! #nmae of workflow + +on: + workflow_dispatch: + +jobs: + hello-world: #name of job + runs-on: ubuntu-latest + steps: #what will the job actaully do + - name: Print Hello World #list with "-" + run: echo Hello Worl # what the job code is From 5be0703d56833f4d46af3b54d28cacde2170f86d Mon Sep 17 00:00:00 2001 From: Ethel Owusu <137795060+eowusu1@users.noreply.github.com> Date: Wed, 22 Nov 2023 10:34:38 +0000 Subject: [PATCH 2/2] Update hello-world.yml --- .github/workflows/hello-world.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/hello-world.yml b/.github/workflows/hello-world.yml index 9d28368..7d9ca9b 100644 --- a/.github/workflows/hello-world.yml +++ b/.github/workflows/hello-world.yml @@ -8,4 +8,5 @@ jobs: runs-on: ubuntu-latest steps: #what will the job actaully do - name: Print Hello World #list with "-" - run: echo Hello Worl # what the job code is + run: echo Hello Worl # what the job code is + # add 2 spaces before the run