21 lines
748 B
Text
21 lines
748 B
Text
- pipeline = @build.pipeline
|
|
|
|
.content-block.build-header.top-area.page-content-header
|
|
.header-content
|
|
= render 'ci/status/badge', status: @build.detailed_status(current_user), link: false, title: @build.status_title
|
|
%strong
|
|
Job
|
|
= link_to "##{@build.id}", project_job_path(@project, @build), class: 'js-build-id'
|
|
in pipeline
|
|
%strong
|
|
= link_to "##{pipeline.id}", pipeline_path(pipeline)
|
|
for
|
|
%strong
|
|
= link_to pipeline.short_sha, project_commit_path(@project, pipeline.sha), class: 'commit-sha'
|
|
from
|
|
%strong
|
|
= link_to @build.ref, project_ref_path(@project, @build.ref), class: 'ref-name'
|
|
|
|
= render "projects/jobs/user" if @build.user
|
|
|
|
= time_ago_with_tooltip(@build.created_at)
|