diff --git a/.allspice/workflows/hello-world.yml b/.allspice/workflows/hello-world.yml
index b7c3a70..b98b0bc 100644
--- a/.allspice/workflows/hello-world.yml
+++ b/.allspice/workflows/hello-world.yml
@@ -1,14 +1,56 @@
-name: Workflow-hello-world
+# This is a basic workflow to help you get started with Actions
+# Lines beginning with a `#` are comments, and only intended to help reviewers understand the script
+# Actions documentation: https://learn.allspice.io/docs/actions-cicd
+# This file is written in YAML syntax, to learn more about YAML visit https://learn.allspice.io/docs/yaml
 
-on:
+# Workflow name
+name: Workflow-syntax-commented
+
+# Workflow triggers on
+# To learn more about triggers, visit https://learn.allspice.io/docs/actions-triggers
+on: 
+  # Workflow is triggered if any of the following events occur
+  # i.e. Logical OR of triggers, i.e. trigger on push or issues
+
+  # Trigger on push
   push:
+
+  # Trigger on issues
   issues:
     # Trigger on issue open, close, or reopen
     types: [opened, closed, reopened]
 
+
+# Workflow jobs
+# Jobs run in parallel by default
+# To run jobs in sequence, create multiple steps in a job
 jobs:
+
+  # Job name
   Job-Hello-World:
+    
+    # Set up server container using Ubuntu operating system (Debian based Linux distribution)
+    # To learn more about Ubuntu, visit https://ubuntu.com/
     runs-on: ubuntu-latest
+
+    # Job steps
+    # Steps run in sequence on the runner machine
+    # To make steps run in parallel, create multiple jobs
     steps:
-      - name: "Print Hello World 🔎"
-        run: echo "Hello World - This is my first AllSpice action"
\ No newline at end of file
+
+      # Job steps start with - name: "Step name"
+      - name: "Print Hello World 🔎" 
+        
+        # run keyword specifies the shell command to run
+        # The shell command is a simple echo command to print "Hello World"
+        # The command is run in the runner machine
+        # To learn more about shell commands, visit https://www.shellscript.sh/
+        run: echo "Hello World"
+
+      - name: "Multiline shell command 🔎"
+        
+        # The shell command is a simple echo command to print two lines of text
+        # The | pipe character is used to specify a multiline command
+        run: |
+          echo "This is the first line"
+          echo "This is the second line"        
\ No newline at end of file