summaryrefslogtreecommitdiff
path: root/app/views/ci/commits/_commit.html.haml
blob: aa116fa12dc2acc7ed75977175515028d4e7e99b (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{class: commit_status_css_class(commit)}
  %td.status
    = commit.status
    - if commit.running?
      ·
      = commit.stage


  %td.build-link
    = link_to ci_project_ref_commits_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}%