mirror of
https://github.com/go-gitea/gitea.git
synced 2025-07-22 10:02:05 +02:00
26 lines
626 B
Handlebars
26 lines
626 B
Handlebars
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
|
<meta name="format-detection" content="telephone=no,date=no,address=no,email=no,url=no">
|
|
<title>{{.Subject}}</title>
|
|
</head>
|
|
<body>
|
|
<h1>{{.Repo.FullName}} {{.Run.WorkflowID}}: {{.Run.Status}}</h1>
|
|
<ul>
|
|
{{range $index, $job := .Jobs}}
|
|
<li>
|
|
<a href="{{$.Run.Link}}/jobs/{{$index}}">
|
|
{{$job.Status}}: {{$job.Name}}{{if $job.Attempt gt 1}}, Attempt #{{$job.Attempt}}{{end}}
|
|
</a>
|
|
</li>
|
|
{{end}}
|
|
</ul>
|
|
<p>
|
|
---
|
|
<br>
|
|
<a href="{{.Run.Link}}">{{.locale.Tr "mail.view_it_on" AppName}}</a>.
|
|
</p>
|
|
</body>
|
|
</html>
|