drone/app/services/notification/templates/review_submitted.html

20 lines
415 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
</head>
<body>
<p>
<b>@{{.Reviewer.DisplayName}}</b>
{{if eq .Decision "approved"}}
approved
{{else if eq .Decision "changereq"}}
requested changes to
{{end}}
pull request #{{.Base.PullReq.Number}} {{.Base.PullReq.Title}}
</p>
<p>
<a href="{{.Base.PullReqURL}}">View pull request #{{.Base.PullReq.Number}}</a>
</p>
</body>
</html>