summaryrefslogtreecommitdiff
path: root/app/views/notify/build_fail_email.html.haml
diff options
context:
space:
mode:
Diffstat (limited to 'app/views/notify/build_fail_email.html.haml')
-rw-r--r--app/views/notify/build_fail_email.html.haml23
1 files changed, 23 insertions, 0 deletions
diff --git a/app/views/notify/build_fail_email.html.haml b/app/views/notify/build_fail_email.html.haml
new file mode 100644
index 00000000000..f4e9749e5c7
--- /dev/null
+++ b/app/views/notify/build_fail_email.html.haml
@@ -0,0 +1,23 @@
+- content_for :header do
+ %h1{style: "background: #c40834; color: #FFF; font: normal 20px Helvetica, Arial, sans-serif; margin: 0; padding: 5px 10px; line-height: 32px; font-size: 16px;"}
+ GitLab (build failed)
+%h3
+ Project:
+ = link_to ci_project_url(@project) do
+ = @project.name
+
+%p
+ Commit: #{link_to @build.short_sha, namespace_project_commit_url(@build.project.namespace, @build.project, @build.sha)}
+%p
+ Author: #{@build.commit.git_author_name}
+%p
+ Branch: #{@build.ref}
+%p
+ Stage: #{@build.stage}
+%p
+ Job: #{@build.name}
+%p
+ Message: #{@build.commit.git_commit_message}
+
+%p
+ Build details: #{link_to "Build #{@build.id}", namespace_project_build_url(@build.project.namespace, @build.project, @build)}