blob: 7fdba85021991aad8763852f6567cf3565e2620b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
module Emails
module Pipelines
def pipeline_succeeded_email(params, to)
pipeline_mail(params, to, 'succeeded') # TODO: missing template
end
def pipeline_failed_email(params, to)
pipeline_mail(params, to, 'failed') # TODO: missing template
end
private
def pipeline_mail(params, to, status)
@params = params
add_headers
mail(to: to, subject: pipeline_subject('failed'))
end
def add_headers
@project = @params.project # `add_project_headers` needs this
add_project_headers
add_pipeline_headers(@params.pipeline)
end
def add_pipeline_headers(pipeline)
headers['X-GitLab-Pipeline-Id'] = pipeline.id
headers['X-GitLab-Pipeline-Ref'] = pipeline.ref
headers['X-GitLab-Pipeline-Status'] = pipeline.status
end
def pipeline_subject(status)
subject(
"Pipeline #{status} for #{@params.project.name}",
@params.pipeline.short_sha)
end
end
end
|