From 30456c6a7ccbceeccd1f18d84a0cdc0bada45679 Mon Sep 17 00:00:00 2001 From: subhadeepdas-9831 <68052252+subhadeepdas-9831@users.noreply.github.com> Date: Sat, 4 Jul 2026 03:04:47 +0530 Subject: [PATCH 01/13] python run --- .github/workflows/03-core-features--02-step-types.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/03-core-features--02-step-types.yaml b/.github/workflows/03-core-features--02-step-types.yaml index 8abea6b1..3ffabdae 100644 --- a/.github/workflows/03-core-features--02-step-types.yaml +++ b/.github/workflows/03-core-features--02-step-types.yaml @@ -13,6 +13,7 @@ jobs: runs-on: ubuntu-24.04 steps: - run: print("Hello from an inline python script in a GitHub Action Workflow!") + - run : print("Completed") shell: python say-hello-action: From d0a050024ab931b3e99dc104f015800bdcd69dc5 Mon Sep 17 00:00:00 2001 From: subhadeepdas-9831 <68052252+subhadeepdas-9831@users.noreply.github.com> Date: Sat, 4 Jul 2026 03:08:43 +0530 Subject: [PATCH 02/13] reverted in yaml --- .github/workflows/03-core-features--02-step-types.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/03-core-features--02-step-types.yaml b/.github/workflows/03-core-features--02-step-types.yaml index 3ffabdae..3d48ab7f 100644 --- a/.github/workflows/03-core-features--02-step-types.yaml +++ b/.github/workflows/03-core-features--02-step-types.yaml @@ -13,7 +13,7 @@ jobs: runs-on: ubuntu-24.04 steps: - run: print("Hello from an inline python script in a GitHub Action Workflow!") - - run : print("Completed") + #- run : print("Completed") shell: python say-hello-action: From b9bdfc78f6b0be6308eee7e48f4014f8587e52e1 Mon Sep 17 00:00:00 2001 From: subhadeepdas-9831 <68052252+subhadeepdas-9831@users.noreply.github.com> Date: Sat, 4 Jul 2026 03:11:08 +0530 Subject: [PATCH 03/13] added with job 4 --- .github/workflows/03-core-features--02-step-types.yaml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/03-core-features--02-step-types.yaml b/.github/workflows/03-core-features--02-step-types.yaml index 3d48ab7f..24c27f21 100644 --- a/.github/workflows/03-core-features--02-step-types.yaml +++ b/.github/workflows/03-core-features--02-step-types.yaml @@ -23,3 +23,10 @@ jobs: # - uses: actions/hello-world-javascript-action@v1 # This would work, but it would be less stable and less secure: with: who-to-greet: "from an action in the GitHub Action marketplace! 👋" + + say-hello-inline-python: + runs-on: ubuntu-24.04 + steps: + #- run: print("Hello from an inline python script in a GitHub Action Workflow!") + - run : print("Completed") + shell: python From bb77072c544d0f5c54d9fc33cafe5ffe7ca8ed7b Mon Sep 17 00:00:00 2001 From: subhadeepdas-9831 <68052252+subhadeepdas-9831@users.noreply.github.com> Date: Sat, 4 Jul 2026 03:14:35 +0530 Subject: [PATCH 04/13] changed --- .../workflows/03-core-features--02-step-types.yaml | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/.github/workflows/03-core-features--02-step-types.yaml b/.github/workflows/03-core-features--02-step-types.yaml index 24c27f21..68096f14 100644 --- a/.github/workflows/03-core-features--02-step-types.yaml +++ b/.github/workflows/03-core-features--02-step-types.yaml @@ -16,6 +16,13 @@ jobs: #- run : print("Completed") shell: python + say-hello-inline-python: + runs-on: ubuntu-24.04 + steps: + #- run: print("Hello from an inline python script in a GitHub Action Workflow!") + - run : print("Completed") + shell: python + say-hello-action: runs-on: ubuntu-24.04 steps: @@ -24,9 +31,4 @@ jobs: with: who-to-greet: "from an action in the GitHub Action marketplace! 👋" - say-hello-inline-python: - runs-on: ubuntu-24.04 - steps: - #- run: print("Hello from an inline python script in a GitHub Action Workflow!") - - run : print("Completed") - shell: python + From 226275d0e0126da226c7bca30efb6156484d0ebc Mon Sep 17 00:00:00 2001 From: subhadeepdas-9831 <68052252+subhadeepdas-9831@users.noreply.github.com> Date: Sat, 4 Jul 2026 03:21:10 +0530 Subject: [PATCH 05/13] mark the line 19 --- .github/workflows/03-core-features--02-step-types.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/03-core-features--02-step-types.yaml b/.github/workflows/03-core-features--02-step-types.yaml index 68096f14..3bb1af4e 100644 --- a/.github/workflows/03-core-features--02-step-types.yaml +++ b/.github/workflows/03-core-features--02-step-types.yaml @@ -16,7 +16,7 @@ jobs: #- run : print("Completed") shell: python - say-hello-inline-python: + say-Completed-inline-python: runs-on: ubuntu-24.04 steps: #- run: print("Hello from an inline python script in a GitHub Action Workflow!") From d4e17fe16bc8224764086c0dcecbf2fb91860dfe Mon Sep 17 00:00:00 2001 From: subhadeepdas-9831 <68052252+subhadeepdas-9831@users.noreply.github.com> Date: Sat, 4 Jul 2026 03:28:47 +0530 Subject: [PATCH 06/13] depended jobs added --- .../03-core-features--03-workflows-jobs-steps.yaml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/03-core-features--03-workflows-jobs-steps.yaml b/.github/workflows/03-core-features--03-workflows-jobs-steps.yaml index cbb562c0..efc94f97 100644 --- a/.github/workflows/03-core-features--03-workflows-jobs-steps.yaml +++ b/.github/workflows/03-core-features--03-workflows-jobs-steps.yaml @@ -28,3 +28,10 @@ jobs: - job-3 steps: - run: echo "...to form a directed acyclic graph (DAG)" + job-5: + runs-on: ubuntu-latest + needs: + - job-1 + - job-4 + steps: + - run: echo "Job-1 and 4 are Completed" From 3ba11ead170e58323703b7d11c855b78b2e7be97 Mon Sep 17 00:00:00 2001 From: subhadeepdas-9831 <68052252+subhadeepdas-9831@users.noreply.github.com> Date: Sat, 4 Jul 2026 03:31:03 +0530 Subject: [PATCH 07/13] depended jobs added --- .../workflows/03-core-features--03-workflows-jobs-steps.yaml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/03-core-features--03-workflows-jobs-steps.yaml b/.github/workflows/03-core-features--03-workflows-jobs-steps.yaml index efc94f97..6b257abe 100644 --- a/.github/workflows/03-core-features--03-workflows-jobs-steps.yaml +++ b/.github/workflows/03-core-features--03-workflows-jobs-steps.yaml @@ -31,7 +31,8 @@ jobs: job-5: runs-on: ubuntu-latest needs: - - job-1 + - job-2 - job-4 + - job-3 steps: - - run: echo "Job-1 and 4 are Completed" + - run: echo "Job-2 ,3 and 4 are Completed" From 5720af44d60b360cc1bd34e525ea21ac66146f61 Mon Sep 17 00:00:00 2001 From: subhadeepdas-9831 <68052252+subhadeepdas-9831@users.noreply.github.com> Date: Sat, 4 Jul 2026 03:38:05 +0530 Subject: [PATCH 08/13] cron schedule --- .../workflows/03-core-features--03-workflows-jobs-steps.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/03-core-features--03-workflows-jobs-steps.yaml b/.github/workflows/03-core-features--03-workflows-jobs-steps.yaml index 6b257abe..c1c0d064 100644 --- a/.github/workflows/03-core-features--03-workflows-jobs-steps.yaml +++ b/.github/workflows/03-core-features--03-workflows-jobs-steps.yaml @@ -1,5 +1,8 @@ name: Workflows, Jobs, and Steps +scheudule: + - cron: "22 10 * * *" #utc time + on: workflow_dispatch: jobs: From 3112da1370cb4c5d0e2a08d75bab5a5a4ece3a50 Mon Sep 17 00:00:00 2001 From: subhadeepdas-9831 <68052252+subhadeepdas-9831@users.noreply.github.com> Date: Sat, 4 Jul 2026 03:39:17 +0530 Subject: [PATCH 09/13] cron --- .../workflows/03-core-features--03-workflows-jobs-steps.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/03-core-features--03-workflows-jobs-steps.yaml b/.github/workflows/03-core-features--03-workflows-jobs-steps.yaml index c1c0d064..5b0d2310 100644 --- a/.github/workflows/03-core-features--03-workflows-jobs-steps.yaml +++ b/.github/workflows/03-core-features--03-workflows-jobs-steps.yaml @@ -1,6 +1,6 @@ name: Workflows, Jobs, and Steps -scheudule: +schedule: - cron: "22 10 * * *" #utc time on: From cb729ade570d87e6bf7615835c9643b6d184ff61 Mon Sep 17 00:00:00 2001 From: subhadeepdas-9831 <68052252+subhadeepdas-9831@users.noreply.github.com> Date: Sat, 4 Jul 2026 03:41:01 +0530 Subject: [PATCH 10/13] specify branch --- .../03-core-features--03-workflows-jobs-steps.yaml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/03-core-features--03-workflows-jobs-steps.yaml b/.github/workflows/03-core-features--03-workflows-jobs-steps.yaml index 5b0d2310..6f43152c 100644 --- a/.github/workflows/03-core-features--03-workflows-jobs-steps.yaml +++ b/.github/workflows/03-core-features--03-workflows-jobs-steps.yaml @@ -1,7 +1,12 @@ name: Workflows, Jobs, and Steps +on: + push: + branches: + - "main" + schedule: - - cron: "22 10 * * *" #utc time + - cron: "22 15 * * *" #utc time on: workflow_dispatch: From c37d4d38fe51eb3ce2121d551c235af620491d79 Mon Sep 17 00:00:00 2001 From: subhadeepdas-9831 <68052252+subhadeepdas-9831@users.noreply.github.com> Date: Sat, 4 Jul 2026 03:42:39 +0530 Subject: [PATCH 11/13] updated --- .../03-core-features--03-workflows-jobs-steps.yaml | 8 -------- 1 file changed, 8 deletions(-) diff --git a/.github/workflows/03-core-features--03-workflows-jobs-steps.yaml b/.github/workflows/03-core-features--03-workflows-jobs-steps.yaml index 6f43152c..6b257abe 100644 --- a/.github/workflows/03-core-features--03-workflows-jobs-steps.yaml +++ b/.github/workflows/03-core-features--03-workflows-jobs-steps.yaml @@ -1,13 +1,5 @@ name: Workflows, Jobs, and Steps -on: - push: - branches: - - "main" - -schedule: - - cron: "22 15 * * *" #utc time - on: workflow_dispatch: jobs: From 31c3c65389d44ff517964a167b87ee0baac13792 Mon Sep 17 00:00:00 2001 From: subhadeepdas-9831 <68052252+subhadeepdas-9831@users.noreply.github.com> Date: Sat, 4 Jul 2026 05:38:19 +0000 Subject: [PATCH 12/13] update include-file --- 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..945c9b46 100644 --- a/03-core-features/filters/included-file.md +++ b/03-core-features/filters/included-file.md @@ -0,0 +1 @@ +. \ No newline at end of file From 70d0c6b06dad13262fa83f1ba8f5867edc6e6b90 Mon Sep 17 00:00:00 2001 From: subhadeepdas-9831 <68052252+subhadeepdas-9831@users.noreply.github.com> Date: Sat, 4 Jul 2026 07:09:05 +0000 Subject: [PATCH 13/13] exclude update --- 03-core-features/filters/excluded-file.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/03-core-features/filters/excluded-file.txt b/03-core-features/filters/excluded-file.txt index e69de29b..efe2f4be 100644 --- a/03-core-features/filters/excluded-file.txt +++ b/03-core-features/filters/excluded-file.txt @@ -0,0 +1 @@ +exclude file update \ No newline at end of file