Skip to content

Commit

Permalink
fix(.github/qns): print to stdout instead of undefined $GROUP.md (#1860)
Browse files Browse the repository at this point in the history
The qns.yml workflow adds a heading to the GitHub comment linking to the
quic-interop-runner repository. The heading is redirected to `$GROUP.md`. Though
`$GROUP` is not defined in this scope.

This commit changes the `echo` command to print to `stdout` directly.
  • Loading branch information
mxinden authored Apr 29, 2024
1 parent 8f99c3d commit 52675c3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/qns.yml
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ jobs:
done
{
echo "### Failed Interop Tests"
echo "[QUIC Interop Runner](https://github.com/quic-interop/quic-interop-runner), *client* vs. *server*" >> "$GROUP.md"
echo "[QUIC Interop Runner](https://github.com/quic-interop/quic-interop-runner), *client* vs. *server*"
cat failed.md
echo "<details><summary>Succeeded and unsupported tests</summary>"
for GROUP in succeeded unsupported; do
Expand Down

0 comments on commit 52675c3

Please sign in to comment.