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 01f90d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/actions/quic-interop-runner/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ runs:
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
grep -A 999999 '^|:--' quic-interop-runner/summary >> comment
echo '' >> comment
shell: bash

Expand Down

0 comments on commit 01f90d0

Please sign in to comment.