2019-06-30 01:57:59 -06:00
|
|
|
{{if $.LatestCommitStatus}}
|
2021-04-10 21:46:37 -06:00
|
|
|
{{if not $.Issue.PullRequest.HasMerged}}
|
|
|
|
<div class="ui top attached header">
|
|
|
|
{{if eq .LatestCommitStatus.State "pending"}}
|
2022-06-27 14:58:46 -06:00
|
|
|
{{$.locale.Tr "repo.pulls.status_checking"}}
|
2021-04-10 21:46:37 -06:00
|
|
|
{{else if eq .LatestCommitStatus.State "success"}}
|
2022-06-27 14:58:46 -06:00
|
|
|
{{$.locale.Tr "repo.pulls.status_checks_success"}}
|
2021-04-10 21:46:37 -06:00
|
|
|
{{else if eq .LatestCommitStatus.State "warning"}}
|
2022-06-27 14:58:46 -06:00
|
|
|
{{$.locale.Tr "repo.pulls.status_checks_warning"}}
|
2021-04-10 21:46:37 -06:00
|
|
|
{{else if eq .LatestCommitStatus.State "failure"}}
|
2022-06-27 14:58:46 -06:00
|
|
|
{{$.locale.Tr "repo.pulls.status_checks_failure"}}
|
2021-04-10 21:46:37 -06:00
|
|
|
{{else if eq .LatestCommitStatus.State "error"}}
|
2022-06-27 14:58:46 -06:00
|
|
|
{{$.locale.Tr "repo.pulls.status_checks_error"}}
|
2021-04-10 21:46:37 -06:00
|
|
|
{{else}}
|
2022-06-27 14:58:46 -06:00
|
|
|
{{$.locale.Tr "repo.pulls.status_checking"}}
|
2021-04-10 21:46:37 -06:00
|
|
|
{{end}}
|
|
|
|
</div>
|
|
|
|
{{end}}
|
2019-06-30 01:57:59 -06:00
|
|
|
|
2021-04-10 21:46:37 -06:00
|
|
|
{{range $.LatestCommitStatuses}}
|
2022-10-28 07:49:42 -06:00
|
|
|
<div class="ui attached segment pr-status">
|
|
|
|
{{template "repo/commit_status" .}}
|
|
|
|
<div class="status-context">
|
|
|
|
<span>{{.Context}} <span class="text grey">{{.Description}}</span></span>
|
|
|
|
<div class="ui status-details">
|
|
|
|
{{if $.is_context_required}}
|
|
|
|
{{if (call $.is_context_required .Context)}}<div class="ui label">{{$.locale.Tr "repo.pulls.status_checks_requested"}}</div>{{end}}
|
|
|
|
{{end}}
|
2023-03-24 04:35:38 -06:00
|
|
|
<span>{{if .TargetURL}}<a href="{{.TargetURL}}">{{$.locale.Tr "repo.pulls.status_checks_details"}}</a>{{end}}</span>
|
2022-10-28 07:49:42 -06:00
|
|
|
</div>
|
2021-04-10 21:46:37 -06:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{{end}}
|
2019-09-17 23:39:45 -06:00
|
|
|
{{end}}
|