Add parameters to Repository.get_workflow_runs (#2408)

This commit is contained in:
Mikhail f. Shiryaev
2023-05-06 17:00:09 +08:00
committed by GitHub
parent a343100084
commit 4198dbfbac
5 changed files with 102 additions and 0 deletions
+2
View File
@@ -477,6 +477,8 @@ class Repository(CompletableGithubObject):
branch: Union[Branch, _NotSetType] = ...,
event: Union[str, _NotSetType] = ...,
status: Union[str, _NotSetType] = ...,
exclude_pull_requests: Union[bool, _NotSetType] = ...,
head_sha: Union[str, _NotSetType] = ...,
) -> PaginatedList[WorkflowRun]: ...
def update_check_suites_preferences(
self, auto_trigger_checks: List[Dict[str, Union[bool, int]]]