We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f2448ba commit 521a642Copy full SHA for 521a642
.github/workflows/unicode_warn.yml
@@ -58,6 +58,7 @@ jobs:
58
if [ $? -ne 0 ]; then
59
# there was an error in the diff
60
human_result="WARNING: git diff failed!"
61
+ echo "UNICODE_HUMAN_RESULT=${human_result}" >> $GITHUB_ENV
62
echo "${human_result}"
63
exit 1
64
fi
@@ -70,6 +71,7 @@ jobs:
70
71
72
# there was an error in the hexdump
73
human_result="WARNING: hexdump failed!"
74
75
76
77
@@ -114,7 +116,7 @@ jobs:
114
116
- name: Exit with or without error
115
117
run: |
118
- if [[ "${{ env.UNICODE_HUMAN_RESULT }}" | grep -i "WARNING" ]]; then
119
+ if [[ "${{ env.UNICODE_HUMAN_RESULT }}" | grep -Ei "ERROR|WARNING" ]]; then
120
121
else
122
exit 0
0 commit comments