diff --git a/.github/workflows/03-core-features--02-step-types.yaml b/.github/workflows/03-core-features--02-step-types.yaml index 8abea6b1..3bb1af4e 100644 --- a/.github/workflows/03-core-features--02-step-types.yaml +++ b/.github/workflows/03-core-features--02-step-types.yaml @@ -13,8 +13,16 @@ 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-Completed-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: @@ -22,3 +30,5 @@ 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! 👋" + + 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..6b257abe 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,11 @@ jobs: - job-3 steps: - run: echo "...to form a directed acyclic graph (DAG)" + job-5: + runs-on: ubuntu-latest + needs: + - job-2 + - job-4 + - job-3 + steps: + - run: echo "Job-2 ,3 and 4 are Completed" 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 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