add artifact links to pull request and related issues #669
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: add artifact links to pull request and related issues | |
on: | |
workflow_run: | |
workflows: [build html version of the ss3 user manual, Build SS3 user manual using texlive] | |
types: [completed] | |
workflow_dispatch: | |
jobs: | |
artifacts-url-comments: | |
name: add artifact links to pull request and related issues job | |
runs-on: ubuntu-latest | |
if: ${{ github.event.workflow_run.conclusion == 'success'}} | |
steps: | |
- name: add artifact links to PR and issues | |
uses: tonyhallett/artifacts-url-comments@v1.1.0 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
prefix: 'Here are the artifacts from your PR:' | |
suffix: Please review your changes in the linked artifacts. | |
format: name | |
addTo: pullandissues |