-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmerge_mr.py
executable file
·82 lines (71 loc) · 2.95 KB
/
merge_mr.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
#!/usr/bin/env python3
# Copyright 2021 FBK
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
# http://www.apache.org/licenses/LICENSE-2.0
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License
"""
Script to merge MRs with correct formatting.
You need to pass the id of the MR request to merge into master.
Please, make sure that your current repository is in a clean
state before starting the merging process and that you have the .PA_TOKEN
file with your Personal Access token in the git root folder.
Please check gitlab website to know how to create your PA token.
"""
import subprocess
import sys
from pathlib import Path
import requests
PROJECT_BASE_URL = "https://gitlab.fbk.eu/api/v4/projects/5223/"
mr_id = sys.argv[1]
git_root = Path(__file__).parent.parent
private_token = (git_root / ".PA_TOKEN").read_text().strip()
mr = requests.get(
PROJECT_BASE_URL + f"merge_requests/{mr_id}",
headers={"PRIVATE-TOKEN": private_token}).json()
user_check = input(
f"[yes/no] Do you want to continue merging MR {mr_id}"
f" from {mr['source_branch']} into {mr['target_branch']}?")
if user_check != "yes":
print("Aborting.")
sys.exit(1)
assert mr["pipeline"] is not None and \
"status" in mr["pipeline"] and mr["pipeline"]["status"] == "success", \
"MR cannot be merged as CI was not successful"
# Ensure everything is up-to-date
subprocess.run(["git", "fetch"])
subprocess.run(["git", "checkout", mr['source_branch']])
subprocess.run(["git", "pull"])
subprocess.run(["git", "checkout", mr['target_branch']])
subprocess.run(["git", "pull"])
commit_authors = subprocess.check_output(
['git', 'log', f"HEAD..{mr['source_branch']}", '--pretty=format:%an <%ae>']).decode()
main_author = sorted(
set(commit_authors.split('\n')), key=lambda x: commit_authors.count(x), reverse=True)[0]
subprocess.run(["git", "merge", "--squash", mr['source_branch']])
p = subprocess.Popen(
["git",
"commit",
f'--author="{main_author}"',
"-m",
f"[{mr['reference']}]{mr['title']}\n\n{mr['description']}"],
stdin=subprocess.PIPE,
stdout=subprocess.PIPE)
return_code = p.wait()
assert return_code == 0
subprocess.run(["git", "push"])
return_code = requests.post(
PROJECT_BASE_URL + f"merge_requests/{mr_id}/notes",
params={"body": f"Merged to {mr['target_branch']}."},
headers={"PRIVATE-TOKEN": private_token}).status_code
assert 200 <= return_code < 300
return_code = requests.put(
PROJECT_BASE_URL + f"merge_requests/{mr_id}",
params={"state_event": "close"},
headers={"PRIVATE-TOKEN": private_token}).status_code
assert 200 <= return_code < 300