Skip to content

Commit 6945e46

Browse files
committed
Add skipped workflow conclusion
1 parent 8496714 commit 6945e46

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

github/api/types.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -981,6 +981,7 @@ class WorkflowConclusion(SerializableEnum):
981981
TIMED_OUT = "timed_out"
982982
ACTION_REQUIRED = "action_required"
983983
STALE = "stale"
984+
SKIPPED = "skipped"
984985

985986

986987
@dataclass
@@ -1016,6 +1017,7 @@ def meta(self) -> JSON:
10161017
WorkflowConclusion.TIMED_OUT: "⏱️",
10171018
WorkflowConclusion.ACTION_REQUIRED: "⚠️",
10181019
WorkflowConclusion.STALE: "⚪",
1020+
WorkflowConclusion.SKIPPED: "⏩️",
10191021
},
10201022
}
10211023

0 commit comments

Comments
 (0)