gitlab-org--gitlab-foss/app/views/notify/pipeline_failed_email.text.erb

30 lines
1.1 KiB
Plaintext
Raw Normal View History

Your pipeline has failed.
2016-10-03 18:55:08 +00:00
Project: <%= @project.name %> ( <%= project_url(@project) %> )
Branch: <%= @pipeline.ref %> ( <%= commits_url(@pipeline) %> )
2016-10-03 18:55:08 +00:00
<% if @merge_request -%>
Merge Request: <%= @merge_request.to_reference %> ( <%= merge_request_url(@merge_request) %> )
2016-10-03 18:55:08 +00:00
<% end -%>
Commit: <%= @pipeline.short_sha %> ( <%= commit_url(@pipeline) %> )
2016-10-03 18:55:08 +00:00
Commit Message: <%= @pipeline.git_commit_message.truncate(50) %>
<% commit = @pipeline.commit -%>
2016-10-13 05:18:00 +00:00
<% if commit.author -%>
2016-10-03 18:55:08 +00:00
Commit Author: <%= commit.author.name %> ( <%= user_url(commit.author) %> )
2016-10-13 05:18:00 +00:00
<% else -%>
Commit Author: <%= commit.author_name %>
2016-10-03 18:55:08 +00:00
<% end -%>
<% failed = @pipeline.statuses.latest.failed -%>
Pipeline #<%= @pipeline.id %> ( <%= pipeline_url(@pipeline) %> ) had <%= failed.size %> failed <%= 'build'.pluralize(failed.size) %>.
2016-10-03 18:55:08 +00:00
<% failed.each do |build| -%>
<%= render "notify/links/#{build.to_partial_path}", pipeline: @pipeline, build: build %>
2016-10-03 18:55:08 +00:00
Stage: <%= build.stage %>
Name: <%= build.name %>
<% if build.has_trace? -%>
2016-10-03 18:55:08 +00:00
Trace: <%= build.trace_with_state(last_lines: 10)[:text] %>
<% end -%>
2016-10-03 18:55:08 +00:00
<% end -%>