From 1c93d3f7730eb12adb4c5710ea5679cde7ee34c4 Mon Sep 17 00:00:00 2001 From: Davide Marchegiani Date: Tue, 17 Feb 2026 17:36:19 +1100 Subject: [PATCH 1/2] Added log message with summary report URL --- action.yml | 1 + entrypoint.sh | 2 ++ 2 files changed, 3 insertions(+) diff --git a/action.yml b/action.yml index cb0b64f..1fd768b 100644 --- a/action.yml +++ b/action.yml @@ -117,6 +117,7 @@ runs: INPUT_JOBSUMMARY: ${{ inputs.JOBSUMMARY }} INPUT_CHECKBOX: ${{ inputs.CHECKBOX }} INPUT_OUTPUT: ${{ inputs.OUTPUT }} + SUMMARY_URL: ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}#summary-${{ job.check_run_id }} shell: bash branding: icon: "external-link" diff --git a/entrypoint.sh b/entrypoint.sh index 6cd8f10..3e5bcb6 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -89,6 +89,8 @@ echo if [ "${INPUT_FORMAT}" == "markdown" ]; then if [ "${INPUT_JOBSUMMARY}" = true ]; then cat "${LYCHEE_TMP}" > "${GITHUB_STEP_SUMMARY}" + # Log a message with the URL to the Summary report + echo "Summary report available at: ${SUMMARY_URL}" fi fi From a382a854c3496a292663572e3390a72fa322cd12 Mon Sep 17 00:00:00 2001 From: Davide Marchegiani Date: Tue, 17 Feb 2026 18:31:40 +1100 Subject: [PATCH 2/2] Added ::notice:: to the summary report log to format it as a GitHub notice message (https://docs.github.com/en/actions/reference/workflows-and-actions/workflow-commands#setting-a-notice-message) --- entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/entrypoint.sh b/entrypoint.sh index 3e5bcb6..2829212 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -90,7 +90,7 @@ if [ "${INPUT_FORMAT}" == "markdown" ]; then if [ "${INPUT_JOBSUMMARY}" = true ]; then cat "${LYCHEE_TMP}" > "${GITHUB_STEP_SUMMARY}" # Log a message with the URL to the Summary report - echo "Summary report available at: ${SUMMARY_URL}" + echo "::notice::Summary report available at: ${SUMMARY_URL}" fi fi