f62dc67d26
Fix ok Add spec Fix ok Fix Add changelog Fix Add memoization a fix
40 lines
833 B
Ruby
40 lines
833 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Ci
|
|
module PipelineEnums
|
|
# Returns the `Hash` to use for creating the `failure_reason` enum for
|
|
# `Ci::Pipeline`.
|
|
def self.failure_reasons
|
|
{
|
|
unknown_failure: 0,
|
|
config_error: 1
|
|
}
|
|
end
|
|
|
|
# Returns the `Hash` to use for creating the `sources` enum for
|
|
# `Ci::Pipeline`.
|
|
def self.sources
|
|
{
|
|
unknown: nil,
|
|
push: 1,
|
|
web: 2,
|
|
trigger: 3,
|
|
schedule: 4,
|
|
api: 5,
|
|
external: 6,
|
|
chat: 8,
|
|
merge_request_event: 10
|
|
}
|
|
end
|
|
|
|
# Returns the `Hash` to use for creating the `config_sources` enum for
|
|
# `Ci::Pipeline`.
|
|
def self.config_sources
|
|
{
|
|
unknown_source: nil,
|
|
repository_source: 1,
|
|
auto_devops_source: 2
|
|
}
|
|
end
|
|
end
|
|
end
|