| D | ci_post_gantt.py | 18 import gitlab 21 from gitlab import Gitlab 22 from gitlab.base import RESTObject 23 from gitlab.v4.objects import Project, ProjectPipeline 67 def gitlab_upload_file_get_url(gl: Gitlab, project_id: str, filepath: str) -> str: argument 73 def gitlab_post_reply_to_note(gl: Gitlab, event: RESTObject, reply_message: str): argument 75 Post a reply to a note in thread based on a GitLab event. 77 :param gl: The GitLab connection instance. 106 except gitlab.exceptions.GitlabError as e: 123 gl = Gitlab(url=GITLAB_URL, private_token=token, retry_transient_errors=True) [all …]
|