I have a GitHub Actions workflow that runs when a PR is opened and when any further commits are pushed to the PR's branch.
I used the Jenkins PR builder plugin previously. There, it was possible to post a link to the PR associated with the PR check -- the "Details" link could be defined from within the Jenkins job. Example:
Is there a way to post a similar (arbitrary) link from a GitHub Action workflow that will display next to the PR check?
EDIT: A couple of alternatives I found:
- a way to output arbitrary links/info to the run's summary page: https://github.com/chromaui/chromatic-cli/issues/699#issuecomment-1363698969
- the workflow could add a comment to the PR: https://github.com/marketplace/actions/add-pr-comment
But I would like to post a link that would be clickable from the PR and would be located right next to the check at the bottom of the PR. Also, the Jenkins PR builder allows clicking on each commit where the check ran and clicking on the Details link from there as well -- that would be awesome.