summaryrefslogtreecommitdiff
path: root/app/views/projects/issues/_related_branches.html.haml
blob: 1892ebb512f0fa17a3b70e145b3b891dd1e24dba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
- if @related_branches.any?
  %h2.related-branches-title
    = pluralize(@related_branches.count, 'Related Branch')
  %ul.unstyled-list.related-merge-requests
    - @related_branches.each do |branch|
      %li
        - target = @project.repository.find_branch(branch).dereferenced_target
        - pipeline = @project.pipeline_for(branch, target.sha) if target
        - if pipeline
          %span.related-branch-ci-status
            = render_pipeline_status(pipeline)
        %span.related-branch-info
          %strong
            = link_to namespace_project_compare_path(@project.namespace, @project, from: @project.default_branch, to: branch), class: "label-branch" do
              = branch