Add generate_release_notes parameter to create_git_release and create_git_tag_and_release (#2417)

This commit is contained in:
Wojciech Barczyński
2023-05-23 15:53:33 +02:00
committed by GitHub
parent c2f12bdc09
commit 49b3ae16bf
13 changed files with 24 additions and 9 deletions
+2
View File
@@ -160,6 +160,7 @@ class Repository(CompletableGithubObject):
message: str,
draft: bool = ...,
prerelease: bool = ...,
generate_release_notes: bool = ...,
target_commitish: Union[str, _NotSetType] = ...,
) -> GitRelease: ...
def create_git_tag(
@@ -181,6 +182,7 @@ class Repository(CompletableGithubObject):
tagger: Union[InputGitAuthor, _NotSetType] = ...,
draft: bool = ...,
prerelease: bool = ...,
generate_release_notes: bool = ...,
) -> GitRelease: ...
def create_git_tree(
self,