mirror of
https://github.com/status-im/PyGithub.git
synced 2026-09-02 03:41:08 +00:00
Add name filter to Repository.get_artifacts() (#2459)
Co-authored-by: Enrico Minack <github@enrico.minack.dev>
This commit is contained in:
@@ -315,7 +315,9 @@ class Repository(CompletableGithubObject):
|
||||
self, archive_format: str, ref: Union[str, _NotSetType] = ...
|
||||
) -> str: ...
|
||||
def get_artifact(self, artifact_id: int) -> Artifact: ...
|
||||
def get_artifacts(self) -> PaginatedList[Artifact]: ...
|
||||
def get_artifacts(
|
||||
self, name: Union[str, _NotSetType] = ...
|
||||
) -> PaginatedList[Artifact]: ...
|
||||
def get_assignees(self) -> PaginatedList[NamedUser]: ...
|
||||
def get_autolinks(self) -> PaginatedList[Autolink]: ...
|
||||
def get_branch(self, branch: str) -> Branch: ...
|
||||
|
||||
Reference in New Issue
Block a user