Welcome to mirror list, hosted at ThFree Co, Russian Federation.

helpers.rb « chain « pipeline « ci « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: bf1380a1da911f2e320325860ba39266aaf0d924 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
module Gitlab
  module Ci
    module Pipeline
      module Chain
        module Helpers
          def error(message)
            pipeline.errors.add(:base, message)
          end
        end
      end
    end
  end
end