From 57a397d1638f76202e2cd011f9b7d5da4ff53f59 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=A0=D0=B0=D1=84=D0=B8=D0=BB=D1=8C=20=D0=9B=D0=B0=D1=82?= =?UTF-8?q?=D1=8B=D0=BF=D0=BE=D0=B2?= Date: Sat, 31 Jan 2026 23:07:13 +0400 Subject: [PATCH 01/16] Update 03-core-features--02-step-types.yaml --- .github/workflows/03-core-features--02-step-types.yaml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/03-core-features--02-step-types.yaml b/.github/workflows/03-core-features--02-step-types.yaml index 8abea6b1..5eabd3dd 100644 --- a/.github/workflows/03-core-features--02-step-types.yaml +++ b/.github/workflows/03-core-features--02-step-types.yaml @@ -4,6 +4,11 @@ on: workflow_dispatch: jobs: + 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: From 61ce9107afff169effab813b2c6e8e8e07278af9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=A0=D0=B0=D1=84=D0=B8=D0=BB=D1=8C=20=D0=9B=D0=B0=D1=82?= =?UTF-8?q?=D1=8B=D0=BF=D0=BE=D0=B2?= Date: Sat, 31 Jan 2026 23:32:28 +0400 Subject: [PATCH 02/16] Update 03-core-features--02-step-types.yaml --- .github/workflows/03-core-features--02-step-types.yaml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/03-core-features--02-step-types.yaml b/.github/workflows/03-core-features--02-step-types.yaml index 5eabd3dd..46036902 100644 --- a/.github/workflows/03-core-features--02-step-types.yaml +++ b/.github/workflows/03-core-features--02-step-types.yaml @@ -4,6 +4,11 @@ on: workflow_dispatch: jobs: + печать-Моны-Лизы: + 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: From 319b6033ddca03dbe02ef0f700e958a16311bb0e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=A0=D0=B0=D1=84=D0=B8=D0=BB=D1=8C=20=D0=9B=D0=B0=D1=82?= =?UTF-8?q?=D1=8B=D0=BF=D0=BE=D0=B2?= Date: Sat, 31 Jan 2026 23:33:26 +0400 Subject: [PATCH 03/16] Update 03-core-features--02-step-types.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 46036902..234bc152 100644 --- a/.github/workflows/03-core-features--02-step-types.yaml +++ b/.github/workflows/03-core-features--02-step-types.yaml @@ -4,7 +4,7 @@ on: workflow_dispatch: jobs: - печать-Моны-Лизы: + print-mona-lisa: runs-on: ubuntu-24.04 steps: - run: curl -s https://asciiart.website/ascii/art/mona_lisa.txt From 26dc96b0a495a1dc43f6cfeec9ac35ebbb344e23 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=A0=D0=B0=D1=84=D0=B8=D0=BB=D1=8C=20=D0=9B=D0=B0=D1=82?= =?UTF-8?q?=D1=8B=D0=BF=D0=BE=D0=B2?= Date: Sun, 1 Feb 2026 00:00:15 +0400 Subject: [PATCH 04/16] Multiple jobs.yml --- .github/workflows/main.yml | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 00000000..c4aada58 --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,36 @@ +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 + steps: + - run: echo "${{github.job}}" + + + job-4: + runs-on: ubuntu-24.04 + steps: + - run: echo "${{github.job}}" + + + job-5: + runs-on: ubuntu-24.04 + steps: + - run: echo "${{github.job}}" + + From 7e3a8d12a28d555c7b52cbdd0e124ad25e95c2f2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=A0=D0=B0=D1=84=D0=B8=D0=BB=D1=8C=20=D0=9B=D0=B0=D1=82?= =?UTF-8?q?=D1=8B=D0=BF=D0=BE=D0=B2?= Date: Sun, 1 Feb 2026 00:03:03 +0400 Subject: [PATCH 05/16] Update main.yml Ordering sequence --- .github/workflows/main.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index c4aada58..d8e54a3f 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -12,24 +12,28 @@ jobs: job-2: runs-on: ubuntu-24.04 + needs: job-1 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-3 steps: - run: echo "${{github.job}}" job-5: runs-on: ubuntu-24.04 + needs: job-4 steps: - run: echo "${{github.job}}" From 9cdf4722d6fb7755d49a145cd42053a1db29d51e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=A0=D0=B0=D1=84=D0=B8=D0=BB=D1=8C=20=D0=9B=D0=B0=D1=82?= =?UTF-8?q?=D1=8B=D0=BF=D0=BE=D0=B2?= Date: Sun, 1 Feb 2026 12:24:45 +0400 Subject: [PATCH 06/16] Update main.yml --- .github/workflows/main.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index d8e54a3f..0bf8769f 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -33,7 +33,9 @@ jobs: job-5: runs-on: ubuntu-24.04 - needs: job-4 + needs: + - job-4 + - job-1 steps: - run: echo "${{github.job}}" From 9fafcad11a9ec88589794788ac732aca60f30dac Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=A0=D0=B0=D1=84=D0=B8=D0=BB=D1=8C=20=D0=9B=D0=B0=D1=82?= =?UTF-8?q?=D1=8B=D0=BF=D0=BE=D0=B2?= Date: Sun, 1 Feb 2026 12:26:59 +0400 Subject: [PATCH 07/16] Update main.yml --- .github/workflows/main.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 0bf8769f..6db80649 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -12,7 +12,6 @@ jobs: job-2: runs-on: ubuntu-24.04 - needs: job-1 steps: - run: echo "${{github.job}}" @@ -35,7 +34,6 @@ jobs: runs-on: ubuntu-24.04 needs: - job-4 - - job-1 steps: - run: echo "${{github.job}}" From 424d7eb8194e62c49cee167a62e895cd16e8514b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=A0=D0=B0=D1=84=D0=B8=D0=BB=D1=8C=20=D0=9B=D0=B0=D1=82?= =?UTF-8?q?=D1=8B=D0=BF=D0=BE=D0=B2?= Date: Sun, 1 Feb 2026 12:29:27 +0400 Subject: [PATCH 08/16] Update main.yml --- .github/workflows/main.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 6db80649..43c787b4 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -18,14 +18,15 @@ jobs: job-3: runs-on: ubuntu-24.04 - needs: job-2 + needs: + - job-2 + - job-1 steps: - run: echo "${{github.job}}" job-4: runs-on: ubuntu-24.04 - needs: job-3 steps: - run: echo "${{github.job}}" @@ -33,6 +34,7 @@ jobs: job-5: runs-on: ubuntu-24.04 needs: + - job-3 - job-4 steps: - run: echo "${{github.job}}" From e6fdf46b03005f2177daf53bfdb75cec0a8a4230 Mon Sep 17 00:00:00 2001 From: latipov Date: Sun, 1 Feb 2026 14:01:05 +0400 Subject: [PATCH 09/16] =?UTF-8?q?=D0=BF=D0=BD=D0=B5=D0=BA=D0=B3=D0=B2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/main.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 43c787b4..493424b9 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -27,6 +27,8 @@ jobs: job-4: runs-on: ubuntu-24.04 + needs: + - job-1 steps: - run: echo "${{github.job}}" From a5cc164f38595159bd166299f61f10f9313f3c35 Mon Sep 17 00:00:00 2001 From: GrafMKristo Date: Sun, 1 Feb 2026 16:32:56 +0400 Subject: [PATCH 10/16] Some --- .github/workflows/main.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 493424b9..f4b939cc 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -20,7 +20,6 @@ jobs: runs-on: ubuntu-24.04 needs: - job-2 - - job-1 steps: - run: echo "${{github.job}}" From cc7c589967fe9dc9c028ffa0f879d3582460ab2f Mon Sep 17 00:00:00 2001 From: GrafMKristo Date: Mon, 2 Feb 2026 15:43:32 +0400 Subject: [PATCH 11/16] Add bash-container-action submodule --- .gitmodules | 6 +++--- .../container-actions/bash-container-action | 1 + 2 files changed, 4 insertions(+), 3 deletions(-) create mode 160000 06-authoring-actions/container-actions/bash-container-action diff --git a/.gitmodules b/.gitmodules index f5c827f3..373384e6 100644 --- a/.gitmodules +++ b/.gitmodules @@ -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 diff --git a/06-authoring-actions/container-actions/bash-container-action b/06-authoring-actions/container-actions/bash-container-action new file mode 160000 index 00000000..8b700628 --- /dev/null +++ b/06-authoring-actions/container-actions/bash-container-action @@ -0,0 +1 @@ +Subproject commit 8b700628ce500aa4e3550ff9a3ede3b64cf5cdac From 791c566217079cafeb63b58d44047559f73c3837 Mon Sep 17 00:00:00 2001 From: GrafMKristo Date: Mon, 2 Feb 2026 22:50:13 +0400 Subject: [PATCH 12/16] sftdhj --- .github/workflows/03-core-features--04-triggers-and-filters.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/03-core-features--04-triggers-and-filters.yaml b/.github/workflows/03-core-features--04-triggers-and-filters.yaml index d5d72d3b..7dcdeeb2 100644 --- a/.github/workflows/03-core-features--04-triggers-and-filters.yaml +++ b/.github/workflows/03-core-features--04-triggers-and-filters.yaml @@ -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: From 65cb56bcceb39969bb605415922246ebe949d194 Mon Sep 17 00:00:00 2001 From: GrafMKristo Date: Mon, 2 Feb 2026 22:52:40 +0400 Subject: [PATCH 13/16] asedg --- 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..d35aaa45 100644 --- a/03-core-features/filters/included-file.md +++ b/03-core-features/filters/included-file.md @@ -0,0 +1 @@ +A change \ No newline at end of file From f22cfeb759a8d79915677cfc3e9014e55ea23d32 Mon Sep 17 00:00:00 2001 From: GrafMKristo Date: Mon, 2 Feb 2026 22:59:04 +0400 Subject: [PATCH 14/16] rtju --- 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..d35aaa45 100644 --- a/03-core-features/filters/excluded-file.txt +++ b/03-core-features/filters/excluded-file.txt @@ -0,0 +1 @@ +A change \ No newline at end of file From 8a81488990cbdbdaa4586500d992b86150c43816 Mon Sep 17 00:00:00 2001 From: GrafMKristo Date: Mon, 2 Feb 2026 23:14:16 +0400 Subject: [PATCH 15/16] je5i5 --- 03-core-features/filters/excluded-file.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/03-core-features/filters/excluded-file.txt b/03-core-features/filters/excluded-file.txt index d35aaa45..db94c86e 100644 --- a/03-core-features/filters/excluded-file.txt +++ b/03-core-features/filters/excluded-file.txt @@ -1 +1 @@ -A change \ No newline at end of file +A change again \ No newline at end of file From 23adaf21150a4939ef19b898ae56bf372407c947 Mon Sep 17 00:00:00 2001 From: GrafMKristo Date: Mon, 2 Feb 2026 23:18:26 +0400 Subject: [PATCH 16/16] srft --- 03-core-features/filters/included-file.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/03-core-features/filters/included-file.md b/03-core-features/filters/included-file.md index d35aaa45..db94c86e 100644 --- a/03-core-features/filters/included-file.md +++ b/03-core-features/filters/included-file.md @@ -1 +1 @@ -A change \ No newline at end of file +A change again \ No newline at end of file