forked from mozilla/neqo
-
Notifications
You must be signed in to change notification settings - Fork 0
31 lines (27 loc) · 902 Bytes
/
pr-comment.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# Post test results as pull request comment.
#
# This is done as a separate workflow as it requires write permissions. The
# tests itself might run off of a fork, i.e., an untrusted environment and should
# thus not be granted write permissions.
name: PR Comment
on:
workflow_run:
workflows: ["QNS", "CI", "Firefox"]
types:
- completed
permissions:
contents: read
jobs:
comment:
permissions:
pull-requests: write
runs-on: ubuntu-latest
if: |
github.event.workflow_run.event == 'pull_request' &&
(github.event.workflow_run.conclusion == 'success' || github.event.workflow_run.conclusion == 'failure')
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- uses: ./.github/actions/pr-comment
with:
name: ${{ github.event.workflow_run.name }}
token: ${{ secrets.GITHUB_TOKEN }}