ClickHouse/tests/ci/finish_check.py

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

34 lines
927 B
Python
Raw Normal View History

2021-09-29 07:47:15 +00:00
#!/usr/bin/env python3
import logging
from github import Github
2021-11-26 14:00:09 +00:00
from env_helper import GITHUB_RUN_URL
2021-11-26 14:00:09 +00:00
from pr_info import PRInfo
from get_robot_token import get_best_robot_token
2022-11-15 16:49:35 +00:00
from commit_status_helper import get_commit, get_commit_filtered_statuses
2021-09-29 07:47:15 +00:00
NAME = "Run Check"
2021-09-29 07:47:15 +00:00
2021-11-26 14:00:09 +00:00
2021-09-29 07:47:15 +00:00
if __name__ == "__main__":
logging.basicConfig(level=logging.INFO)
2021-11-26 14:00:09 +00:00
pr_info = PRInfo(need_orgs=True)
gh = Github(get_best_robot_token(), per_page=100)
2021-09-29 07:47:15 +00:00
commit = get_commit(gh, pr_info.sha)
url = GITHUB_RUN_URL
2022-11-15 16:49:35 +00:00
statuses = get_commit_filtered_statuses(commit)
pending_status = any( # find NAME status in pending state
True
for status in statuses
if status.context == NAME and status.state == "pending"
)
if pending_status:
commit.create_status(
context=NAME,
description="All checks finished",
state="success",
target_url=url,
)