From 31d8c58a5c64448ba3aa6f48a71f9f77a6e6f3bc Mon Sep 17 00:00:00 2001 From: cjoewono Date: Sun, 8 Feb 2026 16:45:59 -0800 Subject: [PATCH 1/2] Apply .gitignorerules to tracked files --- dev/.github/.gitignore | 0 dev/.github/Team-Group-Project | 1 + dev/.github/hello-world.yml | 11 +++++++++++ 3 files changed, 12 insertions(+) create mode 100644 dev/.github/.gitignore create mode 160000 dev/.github/Team-Group-Project create mode 100644 dev/.github/hello-world.yml diff --git a/dev/.github/.gitignore b/dev/.github/.gitignore new file mode 100644 index 0000000..e69de29 diff --git a/dev/.github/Team-Group-Project b/dev/.github/Team-Group-Project new file mode 160000 index 0000000..6aa0330 --- /dev/null +++ b/dev/.github/Team-Group-Project @@ -0,0 +1 @@ +Subproject commit 6aa0330785da1da44889c8b961bd9e53d30df331 diff --git a/dev/.github/hello-world.yml b/dev/.github/hello-world.yml new file mode 100644 index 0000000..e0a3f8e --- /dev/null +++ b/dev/.github/hello-world.yml @@ -0,0 +1,11 @@ +name: Hello World Workflow + +on: + push: + +jobs: + print-hello: + runs-on: ubuntu-latest + steps: + - name: Print message + run: echo "Hello World" \ No newline at end of file From f58c70129d65e897fb485dad6046add2d43dc921 Mon Sep 17 00:00:00 2001 From: cjoewono Date: Sun, 8 Feb 2026 17:59:34 -0800 Subject: [PATCH 2/2] test --- .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..74a630b --- /dev/null +++ b/.github/workflows/hello-world.yml @@ -0,0 +1,11 @@ +name: Hello World Workflow + +on: + push: + +jobs: + say-hello: + runs-on: ubuntu-latest + steps: + - name: Print a message + run: echo "hellow from GH actions" \ No newline at end of file