From 66da54964eb254d1782f62b82d4d995ad3dbc6a8 Mon Sep 17 00:00:00 2001 From: Thibault Saunier Date: Fri, 24 Sep 2021 22:47:17 -0300 Subject: [PATCH] move-mrs-script: Add prefix to mr titles if no provided Part-of: --- scripts/move_mrs_to_monorepo.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/scripts/move_mrs_to_monorepo.py b/scripts/move_mrs_to_monorepo.py index 1c491566d0..bb4592b9d0 100755 --- a/scripts/move_mrs_to_monorepo.py +++ b/scripts/move_mrs_to_monorepo.py @@ -275,13 +275,17 @@ class GstMRMover: description = f"**Copied from {URL}/{project.path_with_namespace}/-/merge_requests/{mr.iid}**\n\n{mr.description}" + title = mr.title + if ':' not in mr.title: + title = f"{project.name}: {mr.title}" + new_mr_dict = { 'source_branch': branch, 'allow_collaboration': True, 'remove_source_branch': True, 'target_project_id': to_project.id, 'target_branch': MONOREPO_BRANCH, - 'title': mr.title, + 'title': title, 'labels': mr.labels, 'description': description, }