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 -%>
|
2017-03-27 03:57:52 -04:00
|
|
|
<% if commit.different_committer? -%>
|
|
|
|
<% if commit.committer -%>
|
|
|
|
Committed by: <%= commit.committer.name %> ( <%= user_url(commit.committer) %> )
|
|
|
|
<% else -%>
|
|
|
|
Committed by: <%= commit.committer_name %>
|
|
|
|
<% end -%>
|
|
|
|
<% end -%>
|
2016-10-03 14:55:08 -04:00
|
|
|
|
2017-03-27 03:57:52 -04:00
|
|
|
<% if @pipeline.user -%>
|
|
|
|
Pipeline #<%= @pipeline.id %> ( <%= pipeline_url(@pipeline) %> ) triggered by <%= @pipeline.user.name %> ( <%= user_url(@pipeline.user) %> )
|
|
|
|
<% else -%>
|
|
|
|
Pipeline #<%= @pipeline.id %> ( <%= pipeline_url(@pipeline) %> ) triggered by API
|
|
|
|
<% end -%>
|
2016-10-03 14:55:08 -04:00
|
|
|
<% failed = @pipeline.statuses.latest.failed -%>
|
2017-03-27 03:57:52 -04:00
|
|
|
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? -%>
|
2017-04-06 12:20:27 -04:00
|
|
|
Trace: <%= build.trace.raw(last_lines: 10) %>
|
2016-11-21 07:29:34 -05:00
|
|
|
<% end -%>
|
2016-10-03 14:55:08 -04:00
|
|
|
|
|
|
|
<% end -%>
|