Skip to content

Commit

Permalink
refactor(github/interop): use grep instead of awk
Browse files Browse the repository at this point in the history
  • Loading branch information
mxinden committed Mar 15, 2024
1 parent f2733e4 commit ffa25a1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/actions/quic-interop-runner/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,8 +92,8 @@ runs:
run: |
echo '[**QUIC Interop Runner**](https://github.com/quic-interop/quic-interop-runner)' >> comment
echo '' >> comment
# Ignore all, but table, which starts with "|:--".
cat quic-interop-runner/summary | awk '/^\|:--/{flag=1} flag' >> comment
# Ignore all, but table, which starts with "| :--" or "|:--".
grep -A 999999 -E '^\|\s?:--' quic-interop-runner/summary >> comment
echo '' >> comment
shell: bash

Expand Down

0 comments on commit ffa25a1

Please sign in to comment.