Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions .github/workflows/03-core-features--01-hello-world.yaml
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
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!"

4 changes: 2 additions & 2 deletions .github/workflows/03-core-features--02-step-types.yaml
Original file line number Diff line number Diff line change
@@ -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
Expand Down
50 changes: 50 additions & 0 deletions .github/workflows/03-core-features--3.5--own.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
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:
- imjobfifth
- imjobsixth
steps:
- run: echo "im job seventh"
1 change: 1 addition & 0 deletions 03-core-features/filters/included-file.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
helllo again