diff --git a/.github/workflows/check-junit-test.yml b/.github/workflows/check-junit-test.yml index 02e66698784..b23ac9e2415 100644 --- a/.github/workflows/check-junit-test.yml +++ b/.github/workflows/check-junit-test.yml @@ -38,9 +38,15 @@ jobs: - name: Building string profiles to run id: getter run: | + echo "## Run JUNIT tests" >> $GITHUB_STEP_SUMMARY + echo "" >> $GITHUB_STEP_SUMMARY + echo " - input ref = ${{ inputs.ref }}" >> $GITHUB_STEP_SUMMARY + echo " - input mvn opts = ${{ inputs.mvn_opts }}" >> $GITHUB_STEP_SUMMARY if [ -f "./.github/workflows/scripts/get_profiles.sh" ]; then chmod +x ./.github/workflows/scripts/get_profiles.sh - echo "profiles=$(./.github/workflows/scripts/get_profiles.sh ${{ inputs.short_tests }} ${{ inputs.medium_tests }} ${{ inputs.long_tests }})" >> $GITHUB_OUTPUT + profiles="$(./.github/workflows/scripts/get_profiles.sh ${{ inputs.short_tests }} ${{ inputs.medium_tests }} ${{ inputs.long_tests }})" + echo "profiles=${profiles}" >> $GITHUB_OUTPUT + echo " - profiles = ${profiles}" >> $GITHUB_STEP_SUMMARY fi echo_log: