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

_commit.html.haml « commits « ci « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a955a5b6479207b1e4ed39dac19a2e0f3f236914 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
%tr.build.alert{class: commit_status_alert_class(commit)}
  %td.status
    = commit.status
    - if commit.running?
      ·
      = commit.stage


  %td.build-link
    = link_to ci_project_ref_commit_path(commit.project, commit.ref, commit.sha) do
      %strong #{commit.short_sha}

  %td.build-message
    %span= truncate_first_line(commit.git_commit_message)

  %td.build-branch
    - unless @ref
      %span
        = link_to truncate(commit.ref, length: 25), ci_project_path(@project, ref: commit.ref)

  %td.duration
    - if commit.duration > 0
      #{time_interval_in_words commit.duration}

  %td.timestamp
    - if commit.finished_at
      %span #{time_ago_in_words commit.finished_at} ago

  - if commit.project.coverage_enabled?
    %td.coverage
      - if commit.coverage
        #{commit.coverage}%