Skip to content

Commit

Permalink
refactor(github/interop): use grep instead of awk (#1747)
Browse files Browse the repository at this point in the history
* refactor(github/interop): use grep instead of awk

* Simplify regex
  • Loading branch information
mxinden authored Mar 26, 2024
1 parent 76630a5 commit 57dd4ec
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 "|".
grep -E '^\|' quic-interop-runner/summary >> comment
echo '' >> comment
shell: bash

Expand Down

0 comments on commit 57dd4ec

Please sign in to comment.