We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c6e7911 commit 8646ba3Copy full SHA for 8646ba3
2 files changed
action.yml
@@ -117,6 +117,7 @@ runs:
117
INPUT_JOBSUMMARY: ${{ inputs.JOBSUMMARY }}
118
INPUT_CHECKBOX: ${{ inputs.CHECKBOX }}
119
INPUT_OUTPUT: ${{ inputs.OUTPUT }}
120
+ SUMMARY_URL: ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}#summary-${{ job.check_run_id }}
121
shell: bash
122
branding:
123
icon: "external-link"
entrypoint.sh
@@ -89,6 +89,8 @@ echo
89
if [ "${INPUT_FORMAT}" == "markdown" ]; then
90
if [ "${INPUT_JOBSUMMARY}" = true ]; then
91
cat "${LYCHEE_TMP}" > "${GITHUB_STEP_SUMMARY}"
92
+ # Log a message with the URL to the Summary report
93
+ echo "::notice::Summary report available at: ${SUMMARY_URL}"
94
fi
95
96
0 commit comments