We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c7bde4b commit 8cfdb04Copy full SHA for 8cfdb04
1 file changed
.github/workflows/pr-java-ci.yml
@@ -42,9 +42,9 @@ jobs:
42
run: |
43
author="@${{ github.event.pull_request.user.login }}"
44
errors=$(awk '
45
- /\[INFO\] Starting audit\.\.\./ { in=1; next }
46
- /Audit done\./ { in=0 }
47
- in && /^Error:/ { print }
+ /\[INFO\] Starting audit/ { in=1; next }
+ /Audit done/ { in=0 }
+ in && /^Error:/ { print }
48
' build_output.txt)
49
50
if [ -n "$errors" ]; then
0 commit comments