We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8496714 commit 6945e46Copy full SHA for 6945e46
1 file changed
github/api/types.py
@@ -981,6 +981,7 @@ class WorkflowConclusion(SerializableEnum):
981
TIMED_OUT = "timed_out"
982
ACTION_REQUIRED = "action_required"
983
STALE = "stale"
984
+ SKIPPED = "skipped"
985
986
987
@dataclass
@@ -1016,6 +1017,7 @@ def meta(self) -> JSON:
1016
1017
WorkflowConclusion.TIMED_OUT: "⏱️",
1018
WorkflowConclusion.ACTION_REQUIRED: "⚠️",
1019
WorkflowConclusion.STALE: "⚪",
1020
+ WorkflowConclusion.SKIPPED: "⏩️",
1021
},
1022
}
1023
0 commit comments