Get github action url from bash script
Getting the github action job url from bash #
I have been trying to link rest testing framework pages to the connect github action job
BUILD_URL="${GITHUB_SERVER_URL}/${GITHUB_REPOSITORY}/actions/runs/${GITHUB_RUN_ID}"
printf "[github action]($BUILD_URL) :point_left: \n" >> test-result.md
here is the example result page check the footer area. like image below
full bash script, in case you want to generate the url from yml
${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}