21 lines
504 B
Ruby
21 lines
504 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Gitlab
|
|
module Ci
|
|
module Pipeline
|
|
module Chain
|
|
module Helpers
|
|
def error(message, config_error: false, drop_reason: nil)
|
|
if config_error && command.save_incompleted
|
|
drop_reason = :config_error
|
|
pipeline.yaml_errors = message
|
|
end
|
|
|
|
pipeline.drop!(drop_reason) if drop_reason
|
|
pipeline.errors.add(:base, message)
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|