Skip to content

Latest commit

 

History

History
28 lines (22 loc) · 671 Bytes

Commit.rst

File metadata and controls

28 lines (22 loc) · 671 Bytes

Commit

Create commit status check

# sha -> commit on which the status check will be created
# For example, for a webhook payload
# sha = data["pull_request"]["head"]["sha"]
repo.get_commit(sha=sha).create_status(
    state="pending",
    target_url="https://FooCI.com",
    description="FooCI is building",
    context="ci/FooCI"
)

Get commit date

>>> commit = repo.get_commit(sha=sha)
>>> print(commit.commit.author.date)
2018-10-11 03:04:52
>>> print(commit.commit.committer.date)
2018-10-11 03:04:52