Python如何使用Gitlab API實現批量的合併分支
阿新 • • 發佈:2020-01-09
這篇文章主要介紹了Python如何使用Gitlab API實現批量的合併分支,文中通過示例程式碼介紹的非常詳細,對大家的學習或者工作具有一定的參考學習價值,需要的朋友可以參考下
1.需求:每次大批量上線完成後,都會進行將hotfix合併到Master,合併到test/uat等等重複操作(上線釋出後自動合併master已完成)。
2.現實:在完成釋出後自動合併master後,可能還有的專案人員忘記合併到其他分支的情況,so
#!/usr/bin/python3 #coding=utf-8 # 自動合併專案dev分支到其他分支,當合並失敗刪除merge請求 import sys import datetime import urllib.request import gitlab #專案名和專案ID project_name = "python-jmmei" project_list=[265] # 生成gitlab物件 gitlab_url = 'http://gitlab.baidu.com' token = 'xxxxxxxxxxxx' old_branch="hotfix" new_branches=["test","uat","uat_match"] #驗證登入 gl = gitlab.Gitlab(gitlab_url,token) for project_id in project_list: project = gl.projects.get(project_id) print(project.id) for proj in new_branches: print("正在合併專案:%s的%s分支到%s分支"%(project_name,old_branch,proj)) # mr合併請求的物件 mr = None try: # 建立mr mr = project.mergerequests.create({'source_branch': old_branch,'target_branch': proj,'title': "%s to %s ---"%(old_branch,proj) + datetime.datetime.now().strftime("%Y-%m-%d %H:%M:%S") }) # 接受合併請求 url = "%s/api/v3/projects/%s/merge_request/%s/merge"%(gitlab_url,project.id,mr.id) headers = { "PRIVATE-TOKEN":token } req = urllib.request.Request(url=url,headers=headers,method="PUT") resp = urllib.request.urlopen(req) # print(resp) print("合併到分支%s成功,結束...\r\n"%(proj)) except Exception as e: print("合併出錯,可能有衝突未解決或者%s分支並沒有更新,異常資訊:\r\n"%(old_branch)) print(e) # 把剛建立的mr請求刪除 #v4版本支援 project.mergerequests.delete(mr.id) mr.delete()
以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支援我們。