diff options
Diffstat (limited to 'app/views/notify/pipeline_success_email.html.haml')
-rw-r--r-- | app/views/notify/pipeline_success_email.html.haml | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/app/views/notify/pipeline_success_email.html.haml b/app/views/notify/pipeline_success_email.html.haml new file mode 100644 index 00000000000..64cf7cfe103 --- /dev/null +++ b/app/views/notify/pipeline_success_email.html.haml @@ -0,0 +1,26 @@ +.p + Project: + = @project.path_with_namespace +.p + Branch: + = @pipeline.ref +.p + Commit: + = @pipeline.short_sha + ( + = @pipeline.sha + ) +.p + Commit Message: + = @pipeline.git_commit_message +.p + Commit Author: + = @pipeline.git_author_name +.p + Pusher: + = @pipeline.user.try(:name) +- failed = @pipeline.statuses.latest.failed +.p + Pipeline # + = @pipeline.id + had succeeded. |