Skip to content

Commit ffe2de0

Browse files
committed
Revert "Try to parse with heredoc"
This reverts commit 5f016c1.
1 parent 5f016c1 commit ffe2de0

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

.github/workflows/csqa.yml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -147,11 +147,7 @@ jobs:
147147
- name: Parse performance report
148148
id: parse_performance_report
149149
run: |
150-
PHPCS_OUTPUT=$(cat <<-EOF
151-
${{ steps.performance_report.outputs.PHPCS_PERF_REPORT }}
152-
EOF
153-
)"
154-
TOTAL_SECS=$(echo ${PHPCS_OUTPUT}| grep -Eo 'TOTAL SNIFF PROCESSING TIME[ ]+[0-9.]+'|awk '{ print $5 }')
150+
TOTAL_SECS=$(echo ${{ steps.performance_report.outputs.PHPCS_PERF_REPORT }}| grep -Eo 'TOTAL SNIFF PROCESSING TIME[ ]+[0-9.]+'|awk '{ print $5 }')
155151
echo "Performance time was ${TOTAL_SECS} (max ${{ env.MAX_PHPCS_PERF_SECS }})"
156152
echo "PHPCS_PERF_SECS=${TOTAL_SECS}" >> $GITHUB_OUTPUT
157153

0 commit comments

Comments
 (0)