improved email subject

This commit is contained in:
Brad Rydzewski 2014-08-03 21:36:54 -07:00
parent 302a898848
commit 15397747cd

View file

@ -24,8 +24,7 @@ const (
) )
const ( const (
SubjectSuccess = "[SUCCESS] %s/%s %s" Subject = "[%s] %s/%s (%s - %s)"
SubjectFailure = "[FAILURE] %s/%s %s"
) )
var ( var (
@ -86,9 +85,11 @@ func (e *Email) sendFailure(context *model.Request) error {
// generate the email subject // generate the email subject
var subject = fmt.Sprintf( var subject = fmt.Sprintf(
SubjectFailure, Subject,
context.Commit.Status,
context.Repo.Owner, context.Repo.Owner,
context.Repo.Name, context.Repo.Name,
context.Commit.Branch,
context.Commit.ShaShort(), context.Commit.ShaShort(),
) )
@ -117,9 +118,11 @@ func (e *Email) sendSuccess(context *model.Request) error {
// generate the email subject // generate the email subject
var subject = fmt.Sprintf( var subject = fmt.Sprintf(
SubjectSuccess, Subject,
context.Commit.Status,
context.Repo.Owner, context.Repo.Owner,
context.Repo.Name, context.Repo.Name,
context.Commit.Branch,
context.Commit.ShaShort(), context.Commit.ShaShort(),
) )