From 8af9ad9cfd45c4f9e9bbba85e0633878bc84fca5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marcel=20Die=C3=9Fner?= Date: Fri, 4 Jun 2021 11:01:57 +0200 Subject: [PATCH 1/2] mistake --- devon4j-architecture/index.asciidoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/devon4j-architecture/index.asciidoc b/devon4j-architecture/index.asciidoc index 4f08629d..a381bcd7 100644 --- a/devon4j-architecture/index.asciidoc +++ b/devon4j-architecture/index.asciidoc @@ -60,7 +60,7 @@ devon4j application follows [multilayered architecture](https://en.wikipedia.org [step] -- -nextKatacodaXStep("devon4j application layers", [{ "image": "images/jtqj_detailed_app_structure.jpg" }]) +nextKatacodaXXStep("devon4j application layers", [{ "image": "images/jtqj_detailed_app_structure.jpg" }]) -- Above image display detailed structure of devon4j application. As shown above jump-the-queue application contains different components like queuemanagement, visitormanagement etc From d3cbee98aafcd95d78c06cde0e6cea1f1a58a1f8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marcel=20Die=C3=9Fner?= Date: Fri, 4 Jun 2021 11:04:45 +0200 Subject: [PATCH 2/2] fix --- .github/workflows/syntaxCheckPullRequest.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/syntaxCheckPullRequest.yml b/.github/workflows/syntaxCheckPullRequest.yml index dc8bd3b1..93e36df1 100644 --- a/.github/workflows/syntaxCheckPullRequest.yml +++ b/.github/workflows/syntaxCheckPullRequest.yml @@ -42,7 +42,9 @@ jobs: id: get_message if: steps.check_files.outputs.files_exists == 'true' run: | - echo "MESSAGE=$(echo '$(cat ./build/errors/syntaxErrors.md)')" >> $GITHUB_ENV + message=`cat ./build/errors/syntaxErrors.md` + echo ${message} + echo "MESSAGE=$(echo ${message})" >> $GITHUB_ENV - name: Comment Syntax Errors if: ${{ env.MESSAGE != '' }}