Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 2 additions & 0 deletions entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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 "::notice::Summary report available at: ${SUMMARY_URL}"
fi
fi

Expand Down
Loading