2016-10-06 11:09:24 -04:00
|
|
|
Your pipeline has failed.
|
2016-10-03 14:55:08 -04:00
|
|
|
|
2016-10-12 13:43:23 -04:00
|
|
|
Project: <%= @project.name %> ( <%= project_url(@project) %> )
|
2016-10-13 15:33:49 -04:00
|
|
|
Branch: <%= @pipeline.ref %> ( <%= commits_url(@pipeline) %> )
|
2016-10-03 14:55:08 -04:00
|
|
|
<% if @merge_request -%>
|
2016-10-12 13:43:23 -04:00
|
|
|
Merge Request: <%= @merge_request.to_reference %> ( <%= merge_request_url(@merge_request) %> )
|
2016-10-03 14:55:08 -04:00
|
|
|
<% end -%>
|
|
|
|
|
2016-10-13 15:33:49 -04:00
|
|
|
Commit: <%= @pipeline.short_sha %> ( <%= commit_url(@pipeline) %> )
|
2016-10-03 14:55:08 -04:00
|
|
|
Commit Message: <%= @pipeline.git_commit_message.truncate(50) %>
|
|
|
|
<% commit = @pipeline.commit -%>
|
2016-10-13 01:18:00 -04:00
|
|
|
<% if commit.author -%>
|
2016-10-03 14:55:08 -04:00
|
|
|
Commit Author: <%= commit.author.name %> ( <%= user_url(commit.author) %> )
|
2016-10-13 01:18:00 -04:00
|
|
|
<% else -%>
|
|
|
|
Commit Author: <%= commit.author_name %>
|
2016-10-03 14:55:08 -04:00
|
|
|
<% end -%>
|
|
|
|
|
|
|
|
<% failed = @pipeline.statuses.latest.failed -%>
|
2016-10-13 15:33:49 -04:00
|
|
|
Pipeline #<%= @pipeline.id %> ( <%= pipeline_url(@pipeline) %> ) had <%= failed.size %> failed <%= 'build'.pluralize(failed.size) %>.
|
2016-10-03 14:55:08 -04:00
|
|
|
|
|
|
|
<% failed.each do |build| -%>
|
2016-11-22 00:44:25 -05:00
|
|
|
<%= render "notify/links/#{build.to_partial_path}", pipeline: @pipeline, build: build %>
|
2016-10-03 14:55:08 -04:00
|
|
|
Stage: <%= build.stage %>
|
|
|
|
Name: <%= build.name %>
|
2016-11-21 07:58:35 -05:00
|
|
|
<% if build.has_trace? -%>
|
2016-10-03 14:55:08 -04:00
|
|
|
Trace: <%= build.trace_with_state(last_lines: 10)[:text] %>
|
2016-11-21 07:29:34 -05:00
|
|
|
<% end -%>
|
2016-10-03 14:55:08 -04:00
|
|
|
|
|
|
|
<% end -%>
|