gitlab-org--gitlab-foss/lib/gitlab/ci/pipeline/chain/helpers.rb
2017-12-08 12:01:15 +01:00

13 lines
219 B
Ruby

module Gitlab
module Ci
module Pipeline
module Chain
module Helpers
def error(message)
pipeline.errors.add(:base, message)
end
end
end
end
end
end