From bdf4eaed892df35f31bcc186f0e314303578a927 Mon Sep 17 00:00:00 2001 From: Justice Adams Date: Tue, 17 Feb 2026 20:30:23 -0800 Subject: [PATCH] [green-dragon] fix test param in triggered bisection jobs (#181962) Fix the usage of our skip_tests parm --- .ci/green-dragon/bisect.groovy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.ci/green-dragon/bisect.groovy b/.ci/green-dragon/bisect.groovy index ee45bef7b4f3..48d4b497e2e2 100644 --- a/.ci/green-dragon/bisect.groovy +++ b/.ci/green-dragon/bisect.groovy @@ -132,7 +132,7 @@ pipeline { string(name: 'BISECT_GOOD', value: stepInfo.bisection_range.current_good), string(name: 'BISECT_BAD', value: stepInfo.bisection_range.current_bad), booleanParam(name: 'IS_BISECT_JOB', value: true), - booleanParam(name: 'SKIP_TESTS', value: params.RUN_TESTS), + booleanParam(name: 'SKIP_TESTS', value: !params.RUN_TESTS), booleanParam(name: 'SKIP_TRIGGER', value: true) ], propagate: false,