I am currently using this method (PyGithub's update_file) to commit and push changes to a external repo. The commits are not getting signed. Is there any way to get the commit signed/verified like in the attached image?
Code overview:
g = Github(ghtoken)
repo = g.get_repo(f"{username}/{repo_name}")
repo.update_file(
path=contents.path,
message=commit_message,
content=new_readme,
author=author,
sha=contents.sha,
branch="master",
committer=committer,
)