From df37646425b8722249d1a57eeae67bea249e829b Mon Sep 17 00:00:00 2001 From: kien Date: Tue, 3 Feb 2026 08:01:48 +0700 Subject: [PATCH 01/22] First Commit --- .github/workflows/pra-01-Hello-World.yaml | 7 +++++++ .../javascript-actions/javascript-action-with-build | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) create mode 100644 .github/workflows/pra-01-Hello-World.yaml diff --git a/.github/workflows/pra-01-Hello-World.yaml b/.github/workflows/pra-01-Hello-World.yaml new file mode 100644 index 00000000..fc71ef21 --- /dev/null +++ b/.github/workflows/pra-01-Hello-World.yaml @@ -0,0 +1,7 @@ +name: Hello World +on: workflow_dispatch +jobs: + build: + runs-on: 'ubuntu-24.04' + steps: + - run: echo "Hello World" diff --git a/06-authoring-actions/javascript-actions/javascript-action-with-build b/06-authoring-actions/javascript-actions/javascript-action-with-build index 08a9e4f7..2b5a15c4 160000 --- a/06-authoring-actions/javascript-actions/javascript-action-with-build +++ b/06-authoring-actions/javascript-actions/javascript-action-with-build @@ -1 +1 @@ -Subproject commit 08a9e4f70066adab8fa53838825f05be0ca0c25d +Subproject commit 2b5a15c4b7560d023e0528069bd5751498e1b31d From bc3f182a2f1e82d837493fde2f58d3fbe4fe913b Mon Sep 17 00:00:00 2001 From: kien Date: Tue, 3 Feb 2026 08:05:31 +0700 Subject: [PATCH 02/22] pra-01 --- .github/workflows/pra-01-Hello-World.yaml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/pra-01-Hello-World.yaml b/.github/workflows/pra-01-Hello-World.yaml index fc71ef21..4cbdd7e3 100644 --- a/.github/workflows/pra-01-Hello-World.yaml +++ b/.github/workflows/pra-01-Hello-World.yaml @@ -1,7 +1,8 @@ name: Hello World on: workflow_dispatch -jobs: +jobs: build: - runs-on: 'ubuntu-24.04' + runs-on: ubuntu-24.04 steps: - - run: echo "Hello World" + - run: echo 'Hello World' + From cad24b80170db23e798d7b1acdc29f66eaee3f9a Mon Sep 17 00:00:00 2001 From: kien Date: Tue, 3 Feb 2026 09:06:33 +0700 Subject: [PATCH 03/22] pra2 --- .github/workflows/pra-02-3steps.yaml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/pra-02-3steps.yaml diff --git a/.github/workflows/pra-02-3steps.yaml b/.github/workflows/pra-02-3steps.yaml new file mode 100644 index 00000000..ede3071f --- /dev/null +++ b/.github/workflows/pra-02-3steps.yaml @@ -0,0 +1,17 @@ +name: 3 steps +on: workflow_dispatch +jobs: + bash-job: + runs-on: ubuntu-24.04 + steps: + - run: echo 'Hello World' + python-job: + runs-on: ubuntu-24.04 + steps: + - run: print("Hello World") + shell: python + git-job: + runs-on: ubuntu-24.04 + steps: + - run: actions/hello-world-javascript-action + From 3c274edf4d842851a139bfafe61cd0579759fa1a Mon Sep 17 00:00:00 2001 From: kien Date: Tue, 3 Feb 2026 09:13:09 +0700 Subject: [PATCH 04/22] Hello World --- .github/workflows/pra-02-3steps.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/pra-02-3steps.yaml b/.github/workflows/pra-02-3steps.yaml index ede3071f..8a059424 100644 --- a/.github/workflows/pra-02-3steps.yaml +++ b/.github/workflows/pra-02-3steps.yaml @@ -13,5 +13,7 @@ jobs: git-job: runs-on: ubuntu-24.04 steps: - - run: actions/hello-world-javascript-action + - uses: actions/hello-world-javascript-action@v1 + with: + who-to-greet: "Hello" From 915a146153679fe88ca38d0261942c524d230fba Mon Sep 17 00:00:00 2001 From: kien Date: Tue, 3 Feb 2026 09:19:11 +0700 Subject: [PATCH 05/22] pra02 --- .github/workflows/pra-02-3steps.yaml | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/.github/workflows/pra-02-3steps.yaml b/.github/workflows/pra-02-3steps.yaml index 8a059424..6c9e5c95 100644 --- a/.github/workflows/pra-02-3steps.yaml +++ b/.github/workflows/pra-02-3steps.yaml @@ -1,19 +1,18 @@ name: 3 steps on: workflow_dispatch jobs: - bash-job: + run-bash: runs-on: ubuntu-24.04 steps: - - run: echo 'Hello World' - python-job: + - run: echo "Hello World" + run-python: runs-on: ubuntu-24.04 steps: - - run: print("Hello World") - shell: python - git-job: + - run: print("Hello World") + shell: python + run-git-action: runs-on: ubuntu-24.04 steps: - uses: actions/hello-world-javascript-action@v1 with: - who-to-greet: "Hello" - + who-to-greet: "Hello" \ No newline at end of file From eab4b1327ad5682a749b9bbb38c5211197c54947 Mon Sep 17 00:00:00 2001 From: kien Date: Tue, 3 Feb 2026 09:30:20 +0700 Subject: [PATCH 06/22] pra-03 --- .github/workflows/pra-03-stepbystep.yaml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/pra-03-stepbystep.yaml diff --git a/.github/workflows/pra-03-stepbystep.yaml b/.github/workflows/pra-03-stepbystep.yaml new file mode 100644 index 00000000..f6300895 --- /dev/null +++ b/.github/workflows/pra-03-stepbystep.yaml @@ -0,0 +1,18 @@ +name: step by step +on: workflow_dispatch +jobs: + job-1: + runs-on: ubuntu-24.04 + steps: + - run: echo "Run job 1" + job-2: + runs-on: ubuntu-24.04 + steps: + - run: echo "Run job 2" + job-3: + runs-on: ubuntu-24.04 + needs: [job-1, job-2] + steps: + - run: echo "Run job 3" + + \ No newline at end of file From a65d892b88397676a7ac62a31677a9254f7ac4c0 Mon Sep 17 00:00:00 2001 From: kien Date: Tue, 3 Feb 2026 09:37:41 +0700 Subject: [PATCH 07/22] pra-03 --- .github/workflows/pra-03-stepbystep.yaml | 20 ++++++++++++-------- 1 file changed, 12 insertions(+), 8 deletions(-) diff --git a/.github/workflows/pra-03-stepbystep.yaml b/.github/workflows/pra-03-stepbystep.yaml index f6300895..5761f44d 100644 --- a/.github/workflows/pra-03-stepbystep.yaml +++ b/.github/workflows/pra-03-stepbystep.yaml @@ -1,18 +1,22 @@ -name: step by step +name: step-by-step on: workflow_dispatch jobs: - job-1: + job-1: runs-on: ubuntu-24.04 steps: - - run: echo "Run job 1" + - run: echo "run job 1" job-2: runs-on: ubuntu-24.04 steps: - - run: echo "Run job 2" + - run: echo "run job 2" job-3: runs-on: ubuntu-24.04 needs: [job-1, job-2] - steps: - - run: echo "Run job 3" - - \ No newline at end of file + steps: + - run: echo "run job3" + job-4: + runs-on: ubuntu-24.04 + needs: [job-1, job-3] + steps: + - run: print("Hello World") + shell: python \ No newline at end of file From 1c54c068261eb8d593285b3dbdcfb98665453bba Mon Sep 17 00:00:00 2001 From: kien Date: Wed, 4 Feb 2026 07:39:35 +0700 Subject: [PATCH 08/22] pra01 --- .github/workflows/pra-01-Hello-World.yaml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/pra-01-Hello-World.yaml b/.github/workflows/pra-01-Hello-World.yaml index 4cbdd7e3..99bccaef 100644 --- a/.github/workflows/pra-01-Hello-World.yaml +++ b/.github/workflows/pra-01-Hello-World.yaml @@ -1,8 +1,7 @@ name: Hello World on: workflow_dispatch jobs: - build: + echo-hello-world: runs-on: ubuntu-24.04 steps: - - run: echo 'Hello World' - + - run: echo "Hello World" \ No newline at end of file From daa25f882ddf9cad04299fd910defc77392c7e0c Mon Sep 17 00:00:00 2001 From: kien Date: Wed, 4 Feb 2026 07:45:37 +0700 Subject: [PATCH 09/22] 3 steps --- .github/workflows/pra-02-3steps.yaml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/pra-02-3steps.yaml b/.github/workflows/pra-02-3steps.yaml index 6c9e5c95..7c09699e 100644 --- a/.github/workflows/pra-02-3steps.yaml +++ b/.github/workflows/pra-02-3steps.yaml @@ -1,18 +1,18 @@ name: 3 steps on: workflow_dispatch jobs: - run-bash: + echo: runs-on: ubuntu-24.04 steps: - run: echo "Hello World" - run-python: + print: runs-on: ubuntu-24.04 steps: - run: print("Hello World") shell: python - run-git-action: - runs-on: ubuntu-24.04 + github-action: + runs-on: ubuntu-24-04 steps: - uses: actions/hello-world-javascript-action@v1 with: - who-to-greet: "Hello" \ No newline at end of file + who-to-greet: 'Hello' \ No newline at end of file From 076f246afe4a72638820a1031dd0de4311ff5267 Mon Sep 17 00:00:00 2001 From: kien Date: Wed, 4 Feb 2026 07:47:16 +0700 Subject: [PATCH 10/22] pra02 --- .github/workflows/pra-02-3steps.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pra-02-3steps.yaml b/.github/workflows/pra-02-3steps.yaml index 7c09699e..e4a9d8cb 100644 --- a/.github/workflows/pra-02-3steps.yaml +++ b/.github/workflows/pra-02-3steps.yaml @@ -15,4 +15,4 @@ jobs: steps: - uses: actions/hello-world-javascript-action@v1 with: - who-to-greet: 'Hello' \ No newline at end of file + who-to-greet: "Hello" \ No newline at end of file From a1abdb9342d1cbbf393c7740d927c2fc4a491429 Mon Sep 17 00:00:00 2001 From: kien Date: Wed, 4 Feb 2026 07:49:15 +0700 Subject: [PATCH 11/22] pra02 --- .github/workflows/pra-02-3steps.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pra-02-3steps.yaml b/.github/workflows/pra-02-3steps.yaml index e4a9d8cb..0b003172 100644 --- a/.github/workflows/pra-02-3steps.yaml +++ b/.github/workflows/pra-02-3steps.yaml @@ -11,7 +11,7 @@ jobs: - run: print("Hello World") shell: python github-action: - runs-on: ubuntu-24-04 + runs-on: ubuntu-24.04 steps: - uses: actions/hello-world-javascript-action@v1 with: From 12714d54dab82db7fcd1014c5890ebfddcf22fb7 Mon Sep 17 00:00:00 2001 From: kien Date: Wed, 4 Feb 2026 07:54:28 +0700 Subject: [PATCH 12/22] pra03 --- .github/workflows/pra-03-stepbystep.yaml | 23 +++++++++++------------ 1 file changed, 11 insertions(+), 12 deletions(-) diff --git a/.github/workflows/pra-03-stepbystep.yaml b/.github/workflows/pra-03-stepbystep.yaml index 5761f44d..9b71bce9 100644 --- a/.github/workflows/pra-03-stepbystep.yaml +++ b/.github/workflows/pra-03-stepbystep.yaml @@ -1,22 +1,21 @@ -name: step-by-step +name: stepbystep on: workflow_dispatch jobs: - job-1: + step1: runs-on: ubuntu-24.04 steps: - - run: echo "run job 1" - job-2: + - run: echo "run step 1" + step2: runs-on: ubuntu-24.04 steps: - - run: echo "run job 2" - job-3: + - run: echo "run step 2" + step3: runs-on: ubuntu-24.04 - needs: [job-1, job-2] + needs: [step1, step2] steps: - - run: echo "run job3" - job-4: + - run: echo "run step 3" + step4: runs-on: ubuntu-24.04 - needs: [job-1, job-3] + needs: [step1, step3] steps: - - run: print("Hello World") - shell: python \ No newline at end of file + - run: echo "run step 4" \ No newline at end of file From 25839de6e29e987a086f98085b3a1b34a94c7f45 Mon Sep 17 00:00:00 2001 From: kien Date: Wed, 4 Feb 2026 08:07:19 +0700 Subject: [PATCH 13/22] pra04 --- 01-history-and-motivation/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/01-history-and-motivation/README.md b/01-history-and-motivation/README.md index 0d0d9b12..09adc329 100644 --- a/01-history-and-motivation/README.md +++ b/01-history-and-motivation/README.md @@ -14,7 +14,7 @@ The time between writing and shipping software has shrunk drastically over the d | ☁️ 2010s–Now | **CI/CD pipelines & cloud** | Multiple times per day | ![](./readme-assets/speed-of-delivery-over-time.png) - +Hi ## History of CI Systems | Year | CI Tool | Significance | From c50d0f6de468d9cc9eb99de031e4d210e0df4499 Mon Sep 17 00:00:00 2001 From: kien Date: Wed, 4 Feb 2026 09:14:17 +0700 Subject: [PATCH 14/22] pra04 --- 01-history-and-motivation/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/01-history-and-motivation/README.md b/01-history-and-motivation/README.md index 09adc329..04bdaa97 100644 --- a/01-history-and-motivation/README.md +++ b/01-history-and-motivation/README.md @@ -14,7 +14,7 @@ The time between writing and shipping software has shrunk drastically over the d | ☁️ 2010s–Now | **CI/CD pipelines & cloud** | Multiple times per day | ![](./readme-assets/speed-of-delivery-over-time.png) -Hi +Hello gay ## History of CI Systems | Year | CI Tool | Significance | From 0b27fa1db3f08769cbf6caf11d6a8dd83965bd20 Mon Sep 17 00:00:00 2001 From: kien Date: Thu, 5 Feb 2026 07:21:32 +0700 Subject: [PATCH 15/22] empty commit --- .github/workflows/pra-01-Hello-World.yaml | 6 ++--- .github/workflows/pra04-pull-request.yaml | 27 +++++++++++++++++++++++ 03-core-features/filters/included-file.md | 1 + 3 files changed, 31 insertions(+), 3 deletions(-) create mode 100644 .github/workflows/pra04-pull-request.yaml diff --git a/.github/workflows/pra-01-Hello-World.yaml b/.github/workflows/pra-01-Hello-World.yaml index 99bccaef..f5ee4061 100644 --- a/.github/workflows/pra-01-Hello-World.yaml +++ b/.github/workflows/pra-01-Hello-World.yaml @@ -1,7 +1,7 @@ -name: Hello World +name: Hello World 111 on: workflow_dispatch jobs: - echo-hello-world: + echo-HelloWorld: runs-on: ubuntu-24.04 steps: - - run: echo "Hello World" \ No newline at end of file + - run: echo "Hello World" diff --git a/.github/workflows/pra04-pull-request.yaml b/.github/workflows/pra04-pull-request.yaml new file mode 100644 index 00000000..a596c45a --- /dev/null +++ b/.github/workflows/pra04-pull-request.yaml @@ -0,0 +1,27 @@ +name: pull request +on: + push: + branches: + - 'hello/*' + pull_request: + types: + - reopened + - synchronize + - opened + paths: + - '03-core-features/filters/*.md' + - '!03-core-features/filters/*.txt' + workflow_dispatch: +jobs: + echo-hello: + runs-on: ubuntu-24.04 + steps: + - name: Print github event info + run: cat '$GITHUB_EVENT_PAYLOAD' + + + + + + + diff --git a/03-core-features/filters/included-file.md b/03-core-features/filters/included-file.md index e69de29b..b6fc4c62 100644 --- a/03-core-features/filters/included-file.md +++ b/03-core-features/filters/included-file.md @@ -0,0 +1 @@ +hello \ No newline at end of file From fef535436960e8cbe9c6d900f09e10abb74f1f96 Mon Sep 17 00:00:00 2001 From: kien Date: Thu, 5 Feb 2026 07:26:12 +0700 Subject: [PATCH 16/22] empty commit --- .github/workflows/pra-02-3steps.yaml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/pra-02-3steps.yaml b/.github/workflows/pra-02-3steps.yaml index 0b003172..8124b1e7 100644 --- a/.github/workflows/pra-02-3steps.yaml +++ b/.github/workflows/pra-02-3steps.yaml @@ -1,18 +1,18 @@ name: 3 steps on: workflow_dispatch jobs: - echo: - runs-on: ubuntu-24.04 + echo-hello: + runs-on: ubuntu-24.0 steps: - run: echo "Hello World" - print: + print-hello: runs-on: ubuntu-24.04 steps: - run: print("Hello World") shell: python - github-action: - runs-on: ubuntu-24.04 - steps: + run-github-action: + runs-on: ubuntu-24.04 + steps: - uses: actions/hello-world-javascript-action@v1 with: - who-to-greet: "Hello" \ No newline at end of file + who-to-greet: 'Hello' \ No newline at end of file From f197ba3dd625548069a7f567034663000d7ff6e4 Mon Sep 17 00:00:00 2001 From: kien Date: Thu, 5 Feb 2026 07:27:08 +0700 Subject: [PATCH 17/22] empty commit --- .github/workflows/pra-02-3steps.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pra-02-3steps.yaml b/.github/workflows/pra-02-3steps.yaml index 8124b1e7..47becc2d 100644 --- a/.github/workflows/pra-02-3steps.yaml +++ b/.github/workflows/pra-02-3steps.yaml @@ -2,7 +2,7 @@ name: 3 steps on: workflow_dispatch jobs: echo-hello: - runs-on: ubuntu-24.0 + runs-on: ubuntu-24.04 steps: - run: echo "Hello World" print-hello: From 86931603d4d482140e667b63ba0e1de9eb93e672 Mon Sep 17 00:00:00 2001 From: kien Date: Thu, 5 Feb 2026 07:30:47 +0700 Subject: [PATCH 18/22] empty commit --- .github/workflows/pra-03-stepbystep.yaml | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/.github/workflows/pra-03-stepbystep.yaml b/.github/workflows/pra-03-stepbystep.yaml index 9b71bce9..ed145ca9 100644 --- a/.github/workflows/pra-03-stepbystep.yaml +++ b/.github/workflows/pra-03-stepbystep.yaml @@ -1,21 +1,21 @@ -name: stepbystep +name: stepbystep1 on: workflow_dispatch jobs: - step1: + job1: runs-on: ubuntu-24.04 steps: - - run: echo "run step 1" - step2: + - run: echo 'run job 1' + job2: runs-on: ubuntu-24.04 steps: - - run: echo "run step 2" - step3: + - run: echo 'run job 2' + job3: runs-on: ubuntu-24.04 - needs: [step1, step2] + needs: [job1, job2] steps: - - run: echo "run step 3" - step4: + - run: echo 'run job 3' + job4: runs-on: ubuntu-24.04 - needs: [step1, step3] + needs: [job1, job3] steps: - - run: echo "run step 4" \ No newline at end of file + - run: echo 'run job 4' \ No newline at end of file From 09becebb7e7f5cf4dff0153d1dba7980e3119942 Mon Sep 17 00:00:00 2001 From: kien Date: Thu, 5 Feb 2026 07:39:11 +0700 Subject: [PATCH 19/22] empty commit --- .github/workflows/pra04-pull-request.yaml | 29 +++++++++-------------- 1 file changed, 11 insertions(+), 18 deletions(-) diff --git a/.github/workflows/pra04-pull-request.yaml b/.github/workflows/pra04-pull-request.yaml index a596c45a..46115b66 100644 --- a/.github/workflows/pra04-pull-request.yaml +++ b/.github/workflows/pra04-pull-request.yaml @@ -1,27 +1,20 @@ -name: pull request -on: +name: pull request 1 +on: push: branches: - - 'hello/*' + - 'example/*' pull_request: types: - - reopened - - synchronize - - opened + - reopened + - opened + - synchronize paths: - - '03-core-features/filters/*.md' - - '!03-core-features/filters/*.txt' + - '03-core-features/filters/included-file.md' + - '!03-core-features/filters/excluded-file.txt' workflow_dispatch: jobs: - echo-hello: + echo-github-info: runs-on: ubuntu-24.04 steps: - - name: Print github event info - run: cat '$GITHUB_EVENT_PAYLOAD' - - - - - - - + - name: hello + run: cat '$GITHUB_EVENT_PATH' \ No newline at end of file From 2951c6c93bd77907c5f6d756e344fa82dcac7417 Mon Sep 17 00:00:00 2001 From: kien Date: Thu, 5 Feb 2026 07:41:39 +0700 Subject: [PATCH 20/22] empty commit --- .github/workflows/pra04-pull-request.yaml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/pra04-pull-request.yaml diff --git a/.github/workflows/pra04-pull-request.yaml b/.github/workflows/pra04-pull-request.yaml new file mode 100644 index 00000000..b221f51e --- /dev/null +++ b/.github/workflows/pra04-pull-request.yaml @@ -0,0 +1,20 @@ +name: pull request 1 +on: + push: + branches: + - 'example-branch/*' + pull_request: + types: + - reopened + - opened + - synchronize + paths: + - '03-core-features/filters/included-file.md' + - '!03-core-features/filters/excluded-file.txt' + workflow_dispatch: +jobs: + echo-github-info: + runs-on: ubuntu-24.04 + steps: + - name: hello + run: cat '$GITHUB_EVENT_PATH' \ No newline at end of file From c1c76ca407291021fd6008a89162399fe378a0b5 Mon Sep 17 00:00:00 2001 From: kien Date: Thu, 5 Feb 2026 07:43:16 +0700 Subject: [PATCH 21/22] e --- .github/workflows/pra04-pull-request.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pra04-pull-request.yaml b/.github/workflows/pra04-pull-request.yaml index b221f51e..4de25750 100644 --- a/.github/workflows/pra04-pull-request.yaml +++ b/.github/workflows/pra04-pull-request.yaml @@ -17,4 +17,4 @@ jobs: runs-on: ubuntu-24.04 steps: - name: hello - run: cat '$GITHUB_EVENT_PATH' \ No newline at end of file + run: cat "$GITHUB_EVENT_PATH" \ No newline at end of file From 418da88ec255bf441816faf936b19875c0bc427e Mon Sep 17 00:00:00 2001 From: kien Date: Thu, 5 Feb 2026 07:48:43 +0700 Subject: [PATCH 22/22] a --- .github/workflows/pra04-pull-request.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/pra04-pull-request.yaml b/.github/workflows/pra04-pull-request.yaml index 4de25750..41aadb1d 100644 --- a/.github/workflows/pra04-pull-request.yaml +++ b/.github/workflows/pra04-pull-request.yaml @@ -5,15 +5,15 @@ on: - 'example-branch/*' pull_request: types: - - reopened - opened + - reopened - synchronize paths: - - '03-core-features/filters/included-file.md' - '!03-core-features/filters/excluded-file.txt' + - '03-core-features/filters/included-file.md' workflow_dispatch: jobs: - echo-github-info: + echo-hello: runs-on: ubuntu-24.04 steps: - name: hello