From f9d997518c51f1a4ea8ee34486947bfe9729d3b3 Mon Sep 17 00:00:00 2001 From: Sachintha Chamikara Date: Wed, 2 Apr 2025 17:07:45 +0530 Subject: [PATCH] Create main.yml --- .github/workflows/main.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000..ebd204e --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,17 @@ +name: Greeting from Mona + +on: push + +jobs: + my-job: + name: My Job + runs-on: ubuntu-latest + steps: + - name: Print a greeting + env: + MY_VAR: Hi there! My name is + FIRST_NAME: Mona + MIDDLE_NAME: The + LAST_NAME: Octocat + run: | + echo $MY_VAR $FIRST_NAME $MIDDLE_NAME $LAST_NAME.