Skip to content

Commit 9716126

Browse files
committed
Auto merge of #7070 - camsteffen:changelog-stderr, r=camsteffen
Output changelog error to stderr Error messages are more helpful if you can see them.
2 parents e9728b8 + f9976d7 commit 9716126

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/clippy_bors.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
grep "^changelog: " | \
4040
sed "s/changelog: //g")
4141
if [[ -z "$output" ]]; then
42-
echo "ERROR: PR body must contain 'changelog: ...'"
42+
echo "ERROR: PR body must contain 'changelog: ...'" >&2
4343
exit 1
4444
elif [[ "$output" = "none" ]]; then
4545
echo "WARNING: changelog is 'none'"

0 commit comments

Comments
 (0)