mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-10 01:25:21 +00:00
13 lines
423 B
Python
13 lines
423 B
Python
#!/usr/bin/env python3
|
|
|
|
import os
|
|
|
|
def get_commit(gh, commit_sha):
|
|
repo = gh.get_repo(os.getenv("GITHUB_REPOSITORY", "ClickHouse/ClickHouse"))
|
|
commit = repo.get_commit(commit_sha)
|
|
return commit
|
|
|
|
def post_commit_status(gh, sha, check_name, description, state, report_url):
|
|
commit = get_commit(gh, sha)
|
|
commit.create_status(context=check_name, description=description, state=state, target_url=report_url)
|