This is an automated email from the ASF dual-hosted git repository. orpiske pushed a commit to branch camel-3.18.x in repository https://gitbox.apache.org/repos/asf/camel.git
commit b859b2c7a64023edd7ebd3b2ba12e5eafd82c7e7 Author: Otavio Rodolfo Piske <[email protected]> AuthorDate: Thu Oct 13 13:56:14 2022 +0200 (chores) ci: fixed missing core results table in summary --- .github/actions/quick-test/quick-test.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/actions/quick-test/quick-test.sh b/.github/actions/quick-test/quick-test.sh index c063539ab5a..b0c920d80be 100755 --- a/.github/actions/quick-test/quick-test.sh +++ b/.github/actions/quick-test/quick-test.sh @@ -96,6 +96,9 @@ function componentTest() { } function coreTest() { + echo "| Core | Result |" >> $GITHUB_STEP_SUMMARY + echo "| --- | --- |" >> $GITHUB_STEP_SUMMARY + cd "core" runTest "core" "1" "1" } @@ -135,6 +138,7 @@ function main() { echo "It will test the following ${total} components:" echo "${components}" + echo "" >> $GITHUB_STEP_SUMMARY echo "| Component | Result |" >> $GITHUB_STEP_SUMMARY echo "| --- | --- |" >> $GITHUB_STEP_SUMMARY current=0
