darkpandarts

Results 1 issues of darkpandarts

Hi, I think the `squash_merge_commit_message` Github api has changed. If I run the following code: ``` ghub = Github(self.token) repo = ghub.get_repo(f"{self.owner}/{self.repository}") print(f"Repository: {repo.full_name}") # print(dir(repo)) repo.edit( allow_squash_merge=True, squash_merge_commit_message="COMMIT_MESSAGES", )...