/
vshmidt
/
pytorch
Обзор
Документация
Войти
/
vshmidt
/
pytorch
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
.github/scripts/comment_on_pr.py
37 строк
1 KB
Nikita Shulga
[EZ][GHF] Rephrase cancelled message (#124947)
26 апр 2024, 01:24
26 апр 2024, 01:24
8db42e7
Код
Авторство
О чём код?
import os from typing import Any from github_utils import gh_post_pr_comment from gitutils import get_git_remote_name, get_git_repo_dir, GitRepo from trymerge_explainer import BOT_COMMANDS_WIKI def parse_args() -> Any: from argparse import ArgumentParser parser = ArgumentParser("Comment on a PR") parser.add_argument("pr_num", type=int) parser.add_argument("action", type=str) return parser.parse_args() def main() -> None: args = parse_args() repo = GitRepo(get_git_repo_dir(), get_git_remote_name(), debug=True) org, project = repo.gh_owner_and_name() run_url = os.environ.get("GH_RUN_URL") job_link = f"[job]({run_url})" if run_url is not None else "job" msg = ( f"The {args.action} {job_link} was canceled or timed out. This most often happen if two merge requests were issued" + " for the same PR, or if merge job was waiting for more than 6 hours for tests to finish." + " In later case, please do not hesitate to reissue the merge command\n" + f" For more information see [pytorch-bot wiki]({BOT_COMMANDS_WIKI})." ) gh_post_pr_comment(org, project, args.pr_num, msg) print(org, project, args.pr_num, msg) if __name__ == "__main__": main()