GitHubCheckRunConclusion#

class safir.github.models.GitHubCheckRunConclusion(value, names=None, *, module=None, qualname=None, type=None, start=1, boundary=None)#

Bases: str, Enum

The check run conclusion state.

Attributes Summary

action_required

The check run requires an action to be taken before it can continue.

cancelled

The check run was cancelled.

failure

The check run has failed.

neutral

The check run has a neutral outcome, perhaps because the check was skipped.

stale

The check run is stale.

success

The check run has succeeded.

timed_out

The check run timed out.

Attributes Documentation

action_required = 'action_required'#

The check run requires an action to be taken before it can continue.

cancelled = 'cancelled'#

The check run was cancelled.

failure = 'failure'#

The check run has failed.

neutral = 'neutral'#

The check run has a neutral outcome, perhaps because the check was skipped.

stale = 'stale'#

The check run is stale.

success = 'success'#

The check run has succeeded.

timed_out = 'timed_out'#

The check run timed out.