Skip to content

Commit 8969107

Browse files
committed
Add waiting workflow action
1 parent e034ee3 commit 8969107

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

github/api/types.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -969,6 +969,7 @@ class RepositoryEvent(SerializableAttrs):
969969

970970
class WorkflowJobAction(SerializableEnum):
971971
QUEUED = "queued"
972+
WAITING = "waiting"
972973
IN_PROGRESS = "in_progress"
973974
COMPLETED = "completed"
974975

@@ -1008,6 +1009,7 @@ def meta(self) -> JSON:
10081009

10091010
_build_status_circles: Dict[WorkflowJobAction, Union[Dict[WorkflowConclusion, str], str]] = {
10101011
WorkflowJobAction.QUEUED: "🟡",
1012+
WorkflowJobAction.WAITING: "🟠",
10111013
WorkflowJobAction.IN_PROGRESS: "🔵",
10121014
WorkflowJobAction.COMPLETED: {
10131015
WorkflowConclusion.SUCCESS: "🟢",

0 commit comments

Comments
 (0)