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

pipelines_helper.rb « ci « helpers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 749726e0e332d63cf16311c2e8359091d04ae05c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# frozen_string_literal: true

module Ci
  module PipelinesHelper
    def pipeline_warnings(pipeline)
      return unless pipeline.warning_messages.any?

      content_tag(:div, class: 'alert alert-warning') do
        content_tag(:h4, 'Warning:') <<
          content_tag(:div) do
            pipeline.warning_messages.each do |warning|
              concat(markdown(warning.content))
            end
          end
      end
    end
  end
end