summaryrefslogtreecommitdiff
path: root/app/views/notify/autodevops_disabled_email.text.erb
blob: 695780c3145ebc75d7484ab873ae8210de2047a5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Auto DevOps pipeline was disabled for <%= @project.name %>

The Auto DevOps pipeline failed for pipeline <%= @pipeline.iid %> (<%= pipeline_url(@pipeline) %>) and has been disabled for <%= @project.name %>. In order to use the Auto DevOps pipeline with your project, please review the currently supported languagues (https://docs.gitlab.com/ee/topics/autodevops/#currently-supported-languages), adjust your project accordingly, and turn on the Auto DevOps pipeline within your CI/CD project settings (<%= project_settings_ci_cd_url(@project) %>).

<% 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 -%>
<% failed = @pipeline.statuses.latest.failed -%>
had <%= failed.size %> failed <%= 'build'.pluralize(failed.size) %>.

<% failed.each do |build| -%>
  <%= render "notify/links/#{build.to_partial_path}", pipeline: @pipeline, build: build %>
  Stage: <%= build.stage %>
  Name: <%= build.name %>
  <% if build.has_trace? -%>
    Trace: <%= build.trace.raw(last_lines: 10) %>
  <% end -%>
<% end -%>