From b5286992785ba895b8422027454f380c5605b34c Mon Sep 17 00:00:00 2001 From: nikiOstrov <80963098+nikiOstrov@users.noreply.github.com> Date: Tue, 30 Nov 2021 10:55:20 +0100 Subject: [PATCH 1/2] adding git submodule Also changed the url of katacoda scenarios submodule --- .gitmodules | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.gitmodules b/.gitmodules index c53a0911e73..9d10bee71ca 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,7 +1,11 @@ [submodule "katacoda-scenarios"] path = katacoda-scenarios - url = https://github.com/devonfw/katacoda-scenarios.git + url = https://github.com/devonfw-tutorials/katacoda-scenarios.git branch = master +[submodule "wiki-tutorials"] + path = wiki-tutorials + url = https://github.com/devonfw-tutorials/wiki-tutorials.git + branch = main [submodule "devonfw-guide"] path = devonfw-guide url = https://github.com/devonfw/devonfw-guide.git From 480c8f5bfe3cabf2a331b5973ce838cb84f660f6 Mon Sep 17 00:00:00 2001 From: nikiOstrov <80963098+nikiOstrov@users.noreply.github.com> Date: Tue, 30 Nov 2021 13:09:53 +0100 Subject: [PATCH 2/2] added dispatch event for wiki tutorials --- .github/workflows/dispatch-event.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/dispatch-event.yml b/.github/workflows/dispatch-event.yml index 25a8c5b9f2c..8d472a20fd7 100644 --- a/.github/workflows/dispatch-event.yml +++ b/.github/workflows/dispatch-event.yml @@ -36,6 +36,13 @@ jobs: git merge origin/master cd .. git add katacoda-scenarios + cd wiki-tutorials/ + git checkout main + git fetch + git branch + git merge origin/main + cd .. + git add wiki-tutorials cd architectures/ git checkout master git fetch