Searched refs:source_branch (Results 1 – 1 of 1) sorted by relevance
34 def _get_mr_obj(source_branch): # type: (str) -> Union[Gitlab, None] argument35 if not source_branch:40 mrs = gl.project.mergerequests.list(state='opened', source_branch=source_branch)47 def get_mr_iid(source_branch): # type: (str) -> str argument48 mr = _get_mr_obj(source_branch)55 def get_mr_changed_files(source_branch): # type: (str) -> Any argument56 mr = _get_mr_obj(source_branch)61 … 'origin/{}...origin/{}'.format(mr.target_branch, source_branch)]).decode('utf8')64 def get_mr_commits(source_branch): # type: (str) -> str argument65 mr = _get_mr_obj(source_branch)