Add support for workflow jobs and steps (#1951)

Co-authored-by: Enrico Minack <github@enrico.minack.dev>
This commit is contained in:
Jeppe Fihl-Pearson
2023-06-20 14:37:56 +08:00
committed by GitHub
co-authored by Enrico Minack
parent cb50dec5ba
commit 804c3107c8
11 changed files with 537 additions and 2 deletions
+21
View File
@@ -0,0 +1,21 @@
from datetime import datetime
from typing import Any, Dict
from github.GithubObject import CompletableGithubObject
class WorkflowStep(CompletableGithubObject):
def __repr__(self) -> str: ...
def _initAttributes(self) -> None: ...
def _useAttributes(self, attributes: Dict[str, Any]) -> None: ...
@property
def completed_at(self) -> datetime: ...
@property
def conclusion(self) -> str: ...
@property
def name(self) -> str: ...
@property
def number(self) -> int: ...
@property
def started_at(self) -> datetime: ...
@property
def status(self) -> str: ...