From 3dc299e7dde2c37c1de0c17d10eabd410f0c51e2 Mon Sep 17 00:00:00 2001 From: KdenLim Date: Tue, 16 Dec 2025 17:44:31 +0800 Subject: [PATCH 1/2] make changes to a workflow --- .../03-core-features--01-hello-world.yaml | 20 +++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/.github/workflows/03-core-features--01-hello-world.yaml b/.github/workflows/03-core-features--01-hello-world.yaml index b358d3af..332b2f99 100644 --- a/.github/workflows/03-core-features--01-hello-world.yaml +++ b/.github/workflows/03-core-features--01-hello-world.yaml @@ -8,3 +8,23 @@ jobs: runs-on: ubuntu-24.04 steps: - run: echo "Hello from an inline bash script in a GitHub Action Workflow!" + + say-hello-inline-python: + runs-on: ubuntu-24.04 + steps: + - run: print("Hello from the other side, I must have called a thousand times!") + shell: python + + say-hello-action: + runs-on: ubuntu-24.04 + steps: + - uses: actions/hello-world-javascript-action@v1 + with: + who-to-greet: "The heliocentric solar system" + + say-hello-action-v2: + runs-on: ubuntu-24.04 + steps: + - uses: actions/hello-world-javascript-action@ad41a6c27317e688719c813b0d6a25685a9bce54 + with: + who-to-greet: "kaykay" From b599b4f1e8caff1f18cea3c7d684c93068da53cf Mon Sep 17 00:00:00 2001 From: KdenLim Date: Sat, 20 Dec 2025 19:13:05 +0800 Subject: [PATCH 2/2] add message --- 03-core-features/filters/excluded-file.txt | 1 + 03-core-features/filters/included-file.md | 1 + 2 files changed, 2 insertions(+) diff --git a/03-core-features/filters/excluded-file.txt b/03-core-features/filters/excluded-file.txt index e69de29b..7ba2b6ce 100644 --- a/03-core-features/filters/excluded-file.txt +++ b/03-core-features/filters/excluded-file.txt @@ -0,0 +1 @@ +you look good tonight. \ No newline at end of file diff --git a/03-core-features/filters/included-file.md b/03-core-features/filters/included-file.md index e69de29b..46fe4e43 100644 --- a/03-core-features/filters/included-file.md +++ b/03-core-features/filters/included-file.md @@ -0,0 +1 @@ +# you look good tonight. \ No newline at end of file