Skip to content

QUIC Network Simulator Comment #135

QUIC Network Simulator Comment

QUIC Network Simulator Comment #135

Workflow file for this run

# 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: QUIC Network Simulator Comment
on:
workflow_run:
workflows: ["QUIC Network Simulator"]
types:
- completed
jobs:
comment:
permissions:
pull-requests: write
runs-on: ubuntu-latest
# if: >
# github.event.workflow_run.event == 'pull_request' &&
# github.event.workflow_run.conclusion == 'failure'
if: github.event.workflow_run.event == 'pull_request'
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/pr-comment
with:
name: qns
token: ${{ secrets.GITHUB_TOKEN }}