Skip to content

Commit

Permalink
fix: Rework QNS tables (#1846)
Browse files Browse the repository at this point in the history
Fixes #1845
  • Loading branch information
larseggert committed Apr 18, 2024
1 parent 3797225 commit 4fc4d16
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions .github/actions/quic-interop-runner/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,10 +93,9 @@ runs:
run: |
echo '[**QUIC Interop Runner**](https://github.com/quic-interop/quic-interop-runner)' >> comment
echo '' >> comment
# Ignore all, but table, which starts with "|". Also reformat it to GitHub Markdown.
# Ignore all, but table, which starts with "|".
grep -E '^\|' quic-interop-runner/summary |\
awk '(!/^\| *:-/ || (d++ && d < 3))' |\
sed -E -e 's/✓/:white_check_mark:/gi' -e 's/✕/:x:/gi' -e 's/\?/:grey_question:/gi' \
sed -E -e 's/✓/:white_check_mark:/gi' -e 's/✕/:x:/gi' \
>> comment
echo '' >> comment
echo "EXPORT_COMMENT=1" >> "$GITHUB_ENV"
Expand Down

0 comments on commit 4fc4d16

Please sign in to comment.