mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-16 04:29:08 +00:00
e9c18d69ec
Co-authored-by: vdovhanych <dovhanych@me.com>
23 lines
736 B
YAML
23 lines
736 B
YAML
name: 'UI comment links'
|
|
description: 'Post URLs of HTML test reports to pull request discussion'
|
|
runs:
|
|
using: composite
|
|
steps:
|
|
- name: Find Comment
|
|
uses: peter-evans/find-comment@v2
|
|
id: fc
|
|
with:
|
|
issue-number: ${{ github.event.pull_request.number }}
|
|
comment-author: 'github-actions[bot]'
|
|
body-includes: ui-comment-${{ github.workflow }}
|
|
|
|
- name: Create or update comment
|
|
uses: peter-evans/create-or-update-comment@v3
|
|
with:
|
|
comment-id: ${{ steps.fc.outputs.comment-id }}
|
|
issue-number: ${{ github.event.pull_request.number }}
|
|
body: |
|
|
<!-- ui-comment-${{ github.workflow }} -->
|
|
${{ env.PULL_COMMENT }}
|
|
edit-mode: replace
|