21 lines
487 B
Ruby
21 lines
487 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
module CommitStatusEnums
|
||
|
# Returns the Hash to use for creating the `failure_reason` enum for
|
||
|
# `CommitStatus`.
|
||
|
def self.failure_reasons
|
||
|
{
|
||
|
unknown_failure: nil,
|
||
|
script_failure: 1,
|
||
|
api_failure: 2,
|
||
|
stuck_or_timeout_failure: 3,
|
||
|
runner_system_failure: 4,
|
||
|
missing_dependency_failure: 5,
|
||
|
runner_unsupported: 6,
|
||
|
stale_schedule: 7,
|
||
|
job_execution_timeout: 8,
|
||
|
archived_failure: 9
|
||
|
}
|
||
|
end
|
||
|
end
|