From 867b2737c3cae2c3d100f3cf7125e0e83548d099 Mon Sep 17 00:00:00 2001 From: yaqoob-halepoto Date: Tue, 7 Jul 2026 18:41:22 +0500 Subject: [PATCH 1/4] workflow initial --- .github/workflows/03-core-features--01-hello-world.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/03-core-features--01-hello-world.yaml b/.github/workflows/03-core-features--01-hello-world.yaml index b358d3af..75f9f4fc 100644 --- a/.github/workflows/03-core-features--01-hello-world.yaml +++ b/.github/workflows/03-core-features--01-hello-world.yaml @@ -1,10 +1,10 @@ name: Hello World on: - workflow_dispatch: + workflow_dispatch: # this is github event that trigger the jobs jobs: - say-hello-inline-bash: + say-hello-inline-bash: # this is a job that runs an inline bash script runs-on: ubuntu-24.04 steps: - run: echo "Hello from an inline bash script in a GitHub Action Workflow!" From 2502b470c27960f450a95e9a31c5ae0b625ad2bd Mon Sep 17 00:00:00 2001 From: yaqoob-halepoto Date: Tue, 7 Jul 2026 19:36:14 +0500 Subject: [PATCH 2/4] add own workflow just to check --- .../03-core-features--01-hello-world.yaml | 1 + .../03-core-features--02-step-types.yaml | 4 +- .../workflows/03-core-features--3.5--own.yaml | 49 +++++++++++++++++++ 3 files changed, 52 insertions(+), 2 deletions(-) create mode 100644 .github/workflows/03-core-features--3.5--own.yaml diff --git a/.github/workflows/03-core-features--01-hello-world.yaml b/.github/workflows/03-core-features--01-hello-world.yaml index 75f9f4fc..067d6e7e 100644 --- a/.github/workflows/03-core-features--01-hello-world.yaml +++ b/.github/workflows/03-core-features--01-hello-world.yaml @@ -8,3 +8,4 @@ jobs: runs-on: ubuntu-24.04 steps: - run: echo "Hello from an inline bash script in a GitHub Action Workflow!" + diff --git a/.github/workflows/03-core-features--02-step-types.yaml b/.github/workflows/03-core-features--02-step-types.yaml index 8abea6b1..1690e209 100644 --- a/.github/workflows/03-core-features--02-step-types.yaml +++ b/.github/workflows/03-core-features--02-step-types.yaml @@ -1,8 +1,8 @@ name: Step Types on: - workflow_dispatch: - + workflow_dispatch: # manual trigger +# each job will run in parallel jobs: say-hello-inline-bash: runs-on: ubuntu-24.04 diff --git a/.github/workflows/03-core-features--3.5--own.yaml b/.github/workflows/03-core-features--3.5--own.yaml new file mode 100644 index 00000000..f8b720b5 --- /dev/null +++ b/.github/workflows/03-core-features--3.5--own.yaml @@ -0,0 +1,49 @@ +name: create-own-suff + +on: + workflow_dispatch: + +jobs: + imjobfirst: + runs-on: ubuntu-24.04 + steps: + - run: echo "im job first " + + imjobsecond: + runs-on: ubuntu-24.04 + steps: + - run: echo "im job second" + + imjobthird: + runs-on: ubuntu-24.04 + steps: + - run: echo "im job third" + + imjobfour: + runs-on: ubuntu-24.04 + needs: + - imjobfirst + - imjobsecond + - imjobthird + steps: + - run: echo "im job fourth" + + imjobfifth: + runs-on: ubuntu-24.04 + needs: + - imjobfour + steps: + - run: echo "im job fifth" + + imjobsixth: + runs-on: ubuntu-24.04 + needs: + - imjobfour + steps: + - run: echo "im job sixth" + imjobseven: + runs-on: ubuntu-24.04 + needs: + - imjobsixth + steps: + - run: echo "im job seventh" From b47ad0bd986e97984cce739c4917eb6473c8f7b6 Mon Sep 17 00:00:00 2001 From: yaqoob-halepoto Date: Tue, 7 Jul 2026 19:39:38 +0500 Subject: [PATCH 3/4] checking how it works own workflow --- .github/workflows/03-core-features--3.5--own.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/03-core-features--3.5--own.yaml b/.github/workflows/03-core-features--3.5--own.yaml index f8b720b5..eee1a22a 100644 --- a/.github/workflows/03-core-features--3.5--own.yaml +++ b/.github/workflows/03-core-features--3.5--own.yaml @@ -44,6 +44,7 @@ jobs: imjobseven: runs-on: ubuntu-24.04 needs: + - imjobfifth - imjobsixth steps: - run: echo "im job seventh" From e6224ea57f442665a65caaa52b3d3b068e4bb5e4 Mon Sep 17 00:00:00 2001 From: yaqoob-halepoto Date: Tue, 7 Jul 2026 20:05:28 +0500 Subject: [PATCH 4/4] hello --- 03-core-features/filters/included-file.md | 1 + 1 file changed, 1 insertion(+) diff --git a/03-core-features/filters/included-file.md b/03-core-features/filters/included-file.md index e69de29b..7a5d1668 100644 --- a/03-core-features/filters/included-file.md +++ b/03-core-features/filters/included-file.md @@ -0,0 +1 @@ +helllo again