Skip to content

Commit 35c5cdb

Browse files
fix
1 parent cc00452 commit 35c5cdb

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

dev/scripts/prepare_merge_commands.py

100644100755
Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,9 @@
1818
feature_repo, ticket_number = guess_feature_repo_and_ticket()
1919
feature_repo = read_remote_repository("Enter the name of the remote repository that points to the upstream feature branch", feature_repo)
2020

21+
ticket_project = read_with_default("Enter the project key for the ticket (for example: 'CASSANDRA')", "CASSANDRA")
2122
ticket_number = read_positive_int("Enter the ticket number (for example: '12345'): ", ticket_number)
22-
ticket = "CASSANDRA-%s" % ticket_number
23+
ticket = "%s-%s" % (ticket_project, ticket_number)
2324

2425
print("")
2526
print("Fetching from %s" % upstream_repo)

0 commit comments

Comments
 (0)