From dd8839320fc33d3937983541e51229476ecbc218 Mon Sep 17 00:00:00 2001 From: Stefan Miklosovic Date: Mon, 1 Sep 2025 10:21:24 +0200 Subject: [PATCH] Fix job name determination in .build/run-ci for trunk case patch by Stefan Miklosovic; reviewed by Michael Semb Wever for CASSANDRA-20874 --- .build/run-ci | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.build/run-ci b/.build/run-ci index 2ddfa56416..35e27a0d39 100755 --- a/.build/run-ci +++ b/.build/run-ci @@ -77,7 +77,7 @@ def determine_job_name(cassandra_dir: Path) -> str: version = line.split('value="')[1].split('"')[0] if version.startswith("5.0."): return "cassandra-5.0" - return "trunk" + return "cassandra" def get_current_branch() -> str: """Returns the current branch."""