mirror of
https://github.com/ArcaneChat/android.git
synced 2026-07-03 14:05:24 +02:00
27 lines
779 B
YAML
27 lines
779 B
YAML
name: add artifact links to pull request
|
|
on:
|
|
workflow_run:
|
|
workflows: ["Upload Preview APK"]
|
|
types: [completed]
|
|
|
|
permissions: {}
|
|
|
|
jobs:
|
|
artifacts-url-comments:
|
|
name: add artifact links to pull request
|
|
permissions:
|
|
pull-requests: write
|
|
actions: read
|
|
contents: read
|
|
runs-on: ubuntu-latest
|
|
if: ${{ github.event.workflow_run.conclusion == 'success' }}
|
|
steps:
|
|
- name: add artifact links to pull request
|
|
uses: tonyhallett/artifacts-url-comments@0965ff1a7ae03c5c1644d3c30f956effea4e05ef # v1.1.0
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
with:
|
|
prefix: "**To test the changes in this pull request, install this apk:**"
|
|
format: "[📦 {name}]({url})"
|
|
addTo: pull
|