Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Jérome Perrin
gitlab-ce
Commits
e8d97eb1
Commit
e8d97eb1
authored
Nov 10, 2015
by
Kamil Trzcinski
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Send build name and stage in CI notification e-mail
parent
354b69dd
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
13 additions
and
0 deletions
+13
-0
CHANGELOG
CHANGELOG
+1
-0
app/views/ci/notify/build_fail_email.html.haml
app/views/ci/notify/build_fail_email.html.haml
+4
-0
app/views/ci/notify/build_fail_email.text.erb
app/views/ci/notify/build_fail_email.text.erb
+2
-0
app/views/ci/notify/build_success_email.html.haml
app/views/ci/notify/build_success_email.html.haml
+4
-0
app/views/ci/notify/build_success_email.text.erb
app/views/ci/notify/build_success_email.text.erb
+2
-0
No files found.
CHANGELOG
View file @
e8d97eb1
...
...
@@ -16,6 +16,7 @@ v 8.2.0 (unreleased)
- Fix: Inability to reply to code comments in the MR view, if the MR comes from a fork
- Use git follow flag for commits page when retrieve history for file or directory
- Show merge request CI status on merge requests index page
- Send build name and stage in CI notification e-mail
- Extend yml syntax for only and except to support specifying repository path
- Enable shared runners to all new projects
- Fix: 500 error returned if destroy request without HTTP referer (Kazuki Shimizu)
...
...
app/views/ci/notify/build_fail_email.html.haml
View file @
e8d97eb1
...
...
@@ -12,6 +12,10 @@
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
}
...
...
app/views/ci/notify/build_fail_email.text.erb
View file @
e8d97eb1
...
...
@@ -4,6 +4,8 @@ Status: <%= @build.status %>
Commit:
<%=
@build
.
commit
.
short_sha
%>
Author:
<%=
@build
.
commit
.
git_author_name
%>
Branch:
<%=
@build
.
ref
%>
Stage:
<%=
@build
.
stage
%>
Job:
<%=
@build
.
name
%>
Message:
<%=
@build
.
commit
.
git_commit_message
%>
Url:
<%=
namespace_project_build_url
(
@build
.
gl_project
.
namespace
,
@build
.
gl_project
,
@build
)
%>
app/views/ci/notify/build_success_email.html.haml
View file @
e8d97eb1
...
...
@@ -13,6 +13,10 @@
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
}
...
...
app/views/ci/notify/build_success_email.text.erb
View file @
e8d97eb1
...
...
@@ -4,6 +4,8 @@ Status: <%= @build.status %>
Commit:
<%=
@build
.
commit
.
short_sha
%>
Author:
<%=
@build
.
commit
.
git_author_name
%>
Branch:
<%=
@build
.
ref
%>
Stage:
<%=
@build
.
stage
%>
Job:
<%=
@build
.
name
%>
Message:
<%=
@build
.
commit
.
git_commit_message
%>
Url:
<%=
namespace_project_build_url
(
@build
.
gl_project
.
namespace
,
@build
.
gl_project
,
@build
)
%>
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment