From 2e843d1d392e966c67ef6853f4b1aafa84a3f399 Mon Sep 17 00:00:00 2001 From: Filip Skokan Date: Tue, 8 Sep 2026 17:07:44 +0200 Subject: [PATCH] tools: fix commit queue error summary matching Recognize the error symbol emitted by core-validate-commit so validation failures appear outside the collapsed output. Signed-off-by: Filip Skokan --- tools/actions/commit-queue.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/actions/commit-queue.sh b/tools/actions/commit-queue.sh index e260773d14a5..0c3c70da89f0 100755 --- a/tools/actions/commit-queue.sh +++ b/tools/actions/commit-queue.sh @@ -72,7 +72,7 @@ commit_queue_failed() { Add https://github.com/nodejs/node/labels/commit-queue-squash to land it as one commit, or https://github.com/nodejs/node/labels/commit-queue-rebase to land the commits separately.' else if [ -z "$reported_failure" ]; then - reported_failure=$(grep -e '✘' -e '⚠' output | tail -n 10) + reported_failure=$(grep -e '✘' -e '✖' -e '⚠' output | tail -n 10) fi if [ -z "$reported_failure" ]; then reported_failure=$(tail -n 10 output)