Add artifact links to pull request #64
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
# https://github.com/subsurface/subsurface/blob/master/.github/workflows/artifact-links.yml | |
name: Add artifact links to pull request | |
on: | |
workflow_run: | |
workflows: ["Build"] | |
types: [completed] | |
jobs: | |
artifacts-url-comments: | |
name: Add artifact links to PR and issues | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Add artifact links to PR and issues | |
if: github.event.workflow_run.event == 'pull_request' | |
uses: tonyhallett/[email protected] | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
prefix: "Build for testing:" | |
suffix: "Use at your own risk." | |
format: name | |
addTo: pull | |
errorNoArtifacts: false |