From f0920d975fa1cba8a5b82735d82d0316a42f84b1 Mon Sep 17 00:00:00 2001 From: Jerens Lensun Date: Wed, 4 Jun 2025 14:19:09 +0800 Subject: [PATCH] fix annotation error status on clippy annotation shell Signed-off-by: Jerens Lensun --- etc/ci/clippy-annotation.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/etc/ci/clippy-annotation.sh b/etc/ci/clippy-annotation.sh index 22c6a9ad7be..1213fa53cb7 100755 --- a/etc/ci/clippy-annotation.sh +++ b/etc/ci/clippy-annotation.sh @@ -18,7 +18,7 @@ output=$(jq -c ' $in.message.level | if . == "help" or . == "note" then "notice" elif . == "warning" then "warning" - else "error" + else "failure" end ), title: $in.message.message,