2021-09-29 07:47:15 +00:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
import logging
|
2021-10-27 07:03:23 +00:00
|
|
|
from github import Github
|
2021-11-26 14:00:09 +00:00
|
|
|
|
2023-04-06 09:40:32 +00:00
|
|
|
from commit_status_helper import (
|
2023-04-20 11:55:33 +00:00
|
|
|
CI_STATUS_NAME,
|
2023-04-24 13:41:43 +00:00
|
|
|
NotSet,
|
2023-04-06 09:40:32 +00:00
|
|
|
get_commit,
|
|
|
|
get_commit_filtered_statuses,
|
|
|
|
post_commit_status,
|
|
|
|
)
|
2023-04-20 11:55:33 +00:00
|
|
|
from get_robot_token import get_best_robot_token
|
|
|
|
from pr_info import PRInfo
|
2021-09-29 07:47:15 +00:00
|
|
|
|
2021-11-26 14:00:09 +00:00
|
|
|
|
2023-04-20 11:55:33 +00:00
|
|
|
def main():
|
2021-09-29 07:47:15 +00:00
|
|
|
logging.basicConfig(level=logging.INFO)
|
|
|
|
|
2021-11-26 14:00:09 +00:00
|
|
|
pr_info = PRInfo(need_orgs=True)
|
2022-07-30 05:07:22 +00:00
|
|
|
gh = Github(get_best_robot_token(), per_page=100)
|
2021-09-29 07:47:15 +00:00
|
|
|
commit = get_commit(gh, pr_info.sha)
|
|
|
|
|
2023-04-20 11:55:33 +00:00
|
|
|
statuses = [
|
|
|
|
status
|
|
|
|
for status in get_commit_filtered_statuses(commit)
|
|
|
|
if status.context == CI_STATUS_NAME
|
|
|
|
]
|
|
|
|
if not statuses:
|
|
|
|
return
|
|
|
|
status = statuses[0]
|
|
|
|
if status.state == "pending":
|
|
|
|
post_commit_status(
|
|
|
|
commit,
|
|
|
|
"success",
|
2023-04-24 13:41:43 +00:00
|
|
|
status.target_url or NotSet,
|
2023-04-20 11:55:33 +00:00
|
|
|
"All checks finished",
|
|
|
|
CI_STATUS_NAME,
|
|
|
|
pr_info,
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
main()
|