Home
last modified time | relevance | path

Searched refs:source_branch (Results 1 – 1 of 1) sorted by relevance

/hal_espressif-3.5.0/tools/ci/
Dci_get_mr_info.py34 def _get_mr_obj(source_branch): # type: (str) -> Union[Gitlab, None] argument
35 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 argument
48 mr = _get_mr_obj(source_branch)
55 def get_mr_changed_files(source_branch): # type: (str) -> Any argument
56 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 argument
65 mr = _get_mr_obj(source_branch)