From 8e0c49f88c5d4382e0b5eefeb44a6a6820ff8699 Mon Sep 17 00:00:00 2001 From: ludamad Date: Mon, 9 Feb 2026 22:35:26 +0000 Subject: [PATCH] chore(ci): track history in merge-trains Enables the merge-train history link. --- ci3/run_test_cmd | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/ci3/run_test_cmd b/ci3/run_test_cmd index 61d28160f859..1586444573f7 100755 --- a/ci3/run_test_cmd +++ b/ci3/run_test_cmd @@ -47,8 +47,9 @@ if [ "$CI" -eq 1 ]; then allow_flakes=1 track_test_fail=1 - # Track the test in the history tracker if this is in merge queue or targeting a version branch. - if [[ "$is_merge_queue" -eq 1 || ("${TARGET_BRANCH:-}" =~ ^v[0-9]) ]]; then + # Track the test in the history tracker if this is in merge queue, targeting a version branch, or + # targeting a merge-train. + if [[ "$is_merge_queue" -eq 1 || ("${TARGET_BRANCH:-}" =~ ^v[0-9]) || ("${TARGET_BRANCH:-}" == merge-train/*) ]]; then track_test_history=1 fi