2024-05-12 09:57:41 +00:00
|
|
|
name: Add artifact links to pull request
|
|
|
|
|
|
|
|
on:
|
|
|
|
workflow_run:
|
|
|
|
workflows: ["Ubuntu 16.04 / Qt 5.15-- for AppImage", "Mac", "Windows", "Android", "iOS"]
|
|
|
|
types: [completed]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
artifacts-url-comments:
|
|
|
|
name: Add artifact links to PR and issues
|
|
|
|
runs-on: ubuntu-22.04
|
2024-05-14 00:53:10 +00:00
|
|
|
|
2024-05-12 09:57:41 +00:00
|
|
|
steps:
|
2024-05-14 00:53:10 +00:00
|
|
|
- name: Dump GitHub context
|
2024-05-13 23:52:17 +00:00
|
|
|
env:
|
|
|
|
GITHUB_CONTEXT: ${{ toJson(github) }}
|
|
|
|
run: |
|
|
|
|
echo "GitHub context: $GITHUB_CONTEXT"
|
|
|
|
|
|
|
|
|
2024-05-14 00:53:10 +00:00
|
|
|
- name: Add artifact links to PR and issues
|
|
|
|
uses: tonyhallett/artifacts-url-comments@v1.1.0
|
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
with:
|
|
|
|
prefix: "**Artifacts:**"
|
|
|
|
suffix: "_**WARNING:** Use at your own risk._"
|
|
|
|
format: name
|
|
|
|
addTo: pull
|