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
10 changes: 10 additions & 0 deletions .github/workflows/03-core-features--02-step-types.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,16 @@ on:
workflow_dispatch:

jobs:
print-mona-lisa:
runs-on: ubuntu-24.04
steps:
- run: curl -s https://asciiart.website/ascii/art/mona_lisa.txt

docker-hello-world-run:
runs-on: ubuntu-24.04
steps:
- run: docker run hello-world

say-hello-inline-bash:
runs-on: ubuntu-24.04
steps:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
name: Triggering Events
# just a comment line
# https://docs.github.com/en/actions/writing-workflows/choosing-when-your-workflow-runs/events-that-trigger-workflows

on:
Expand Down
43 changes: 43 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
name: Jobs order

on:
workflow_dispatch:

jobs:
job-1:
runs-on: ubuntu-24.04
steps:
- run: echo "${{github.job}}"


job-2:
runs-on: ubuntu-24.04
steps:
- run: echo "${{github.job}}"


job-3:
runs-on: ubuntu-24.04
needs:
- job-2
steps:
- run: echo "${{github.job}}"


job-4:
runs-on: ubuntu-24.04
needs:
- job-1
steps:
- run: echo "${{github.job}}"


job-5:
runs-on: ubuntu-24.04
needs:
- job-3
- job-4
steps:
- run: echo "${{github.job}}"


6 changes: 3 additions & 3 deletions .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@
[submodule "06-authoring-actions/javascript-actions/typescript-action-with-build"]
path = 06-authoring-actions/javascript-actions/typescript-action-with-build
url = https://github.com/sidpalas/typescript-action-with-build.git
[submodule "06-authoring-actions/container-actions/bash-container-action"]
path = 06-authoring-actions/container-actions/bash-container-action
url = https://github.com/sidpalas/bash-container-action.git
[submodule "06-authoring-actions/container-actions/shell-container-action"]
path = 06-authoring-actions/container-actions/shell-container-action
url = https://github.com/sidpalas/shell-container-action.git
[submodule "capstone"]
path = capstone
url = git@github.com:sidpalas/capstone.git
[submodule "06-authoring-actions/container-actions/bash-container-action"]
path = 06-authoring-actions/container-actions/bash-container-action
url = https://github.com/sidpalas/bash-container-action.git
1 change: 1 addition & 0 deletions 03-core-features/filters/excluded-file.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
A change again
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 @@
A change again
Submodule bash-container-action added at 8b7006