2019-12-03 18:08:56 -07:00
{{if gt (len .PullReviewers) 0}}
2018-11-22 06:17:36 -07:00
<div class="comment box">
<div class="content">
<div class="ui segment">
<h4>{{$.i18n.Tr "repo.issues.review.reviewers"}}</h4>
2019-12-03 18:08:56 -07:00
{{range .PullReviewers}}
{{ $ createdStr := TimeSinceUnix .UpdatedUnix $.Lang }}
2018-11-22 06:17:36 -07:00
<div class="ui divider"></div>
<div class="review-item">
2020-06-15 01:37:00 -06:00
<div class="review-item-left">
<a class="ui avatar image" href="{{.Reviewer.HomeLink}}">
<img src="{{.Reviewer.RelAvatarLink}}">
</a>
<span class="text grey"><a href="{{.Reviewer.HomeLink}}">{{.Reviewer.Name}}</a>
{{if eq .Type 1}}
{{$.i18n.Tr "repo.issues.review.approve" $ createdStr | Safe}}
{{else if eq .Type 2}}
{{$.i18n.Tr "repo.issues.review.comment" $ createdStr | Safe}}
{{else if eq .Type 3}}
{{$.i18n.Tr "repo.issues.review.reject" $ createdStr | Safe}}
{{else if eq .Type 4}}
{{$.i18n.Tr "repo.issues.review.wait" $ createdStr | Safe}}
{{else}}
{{$.i18n.Tr "repo.issues.review.comment" $ createdStr | Safe}}
2020-04-06 10:33:34 -06:00
{{end}}
2020-06-15 01:37:00 -06:00
</span>
</div>
<div class="review-item-right">
{{if .Stale}}
2020-09-04 10:36:37 -06:00
<span class="ui poping up type-icon text grey" data-content="{{$.i18n.Tr "repo.issues.is_stale"}}">
2020-06-15 01:37:00 -06:00
<i class="octicon icon fa-hourglass-end"></i>
</span>
2020-04-06 10:33:34 -06:00
{{end}}
2020-06-15 01:37:00 -06:00
<span class="type-icon text {{if eq .Type 1}}green
{{- else if eq .Type 2}}grey
{{- else if eq .Type 3}}red
{{- else if eq .Type 4}}yellow
{{else}}grey{{end}}">
2020-04-06 10:33:34 -06:00
2020-06-15 01:37:00 -06:00
{{ $ canChoose := false}}
{{if eq .Type 4}}
{{if or (eq .ReviewerID $.SignedUserID) $.Permission.IsAdmin}}
{{ $ canChoose = true}}
{{end}}
{{else}}
{{if and (or $.IsIssuePoster $.CanChooseReviewer) (not (eq $.SignedUserID .ReviewerID))}}
{{ $ canChoose = true}}
{{end}}
{{end}}
{{if $ canChoose }}
2020-09-02 10:55:13 -06:00
<a href=" #" class="ui poping up icon re-request-review" data-is-checked="{{if eq .Type 4}}true{{else}}false{{end}}" data-issue-id="{{$.Issue.ID}}" data-content="{{ if eq .Type 4 }} {{$.i18n.Tr "repo.issues.remove_request_review"}} {{else}} {{$.i18n.Tr "repo.issues.re_request_review"}} {{end}}" data-id="{{.ReviewerID}}" data-update-url="{{$.RepoLink}}/issues/request_review">
2020-09-11 14:19:00 -06:00
{{svg "octicon-sync"}}
2020-06-15 01:37:00 -06:00
</a>
{{end}}
2020-09-11 14:19:00 -06:00
{{svg (printf "octicon-%s" .Type.Icon)}}
2020-06-15 01:37:00 -06:00
</span>
</div>
2018-11-22 06:17:36 -07:00
</div>
{{end}}
</div>
</div>
</div>
{{end}}
2020-04-10 16:01:41 -06:00
<div class="timeline-item comment merge box">
<a class="timeline-avatar text {{if .Issue.PullRequest.HasMerged}}purple
2020-04-02 23:12:42 -06:00
{{- else if .Issue.IsClosed}}grey
{{- else if .IsPullWorkInProgress}}grey
{{- else if .IsFilesConflicted}}grey
{{- else if .IsPullRequestBroken}}red
{{- else if .IsBlockedByApprovals}}red
{{- else if .IsBlockedByRejection}}red
2020-04-16 19:00:36 -06:00
{{- else if .IsBlockedByOutdatedBranch}}red
2020-04-02 23:12:42 -06:00
{{- else if and .EnableStatusCheck (or .RequiredStatusCheckState.IsFailure .RequiredStatusCheckState.IsError)}}red
2020-04-15 14:35:18 -06:00
{{- else if and .EnableStatusCheck (or (not $.LatestCommitStatus) .RequiredStatusCheckState.IsPending .RequiredStatusCheckState.IsWarning)}}yellow
2020-08-23 15:59:41 -06:00
{{- else if and .AllowMerge .RequireSigned (not .WillSign)}}red
2020-04-02 23:12:42 -06:00
{{- else if .Issue.PullRequest.IsChecking}}yellow
{{- else if .Issue.PullRequest.CanAutoMerge}}green
{{- else}}red{{end}}">{{svg "octicon-git-merge" 32}}</a>
2017-03-16 23:57:43 -06:00
<div class="content">
2019-06-30 01:57:59 -06:00
{{template "repo/pulls/status" .}}
2020-06-13 12:49:59 -06:00
{{ $ canAutoMerge := false}}
2020-05-25 13:08:06 -06:00
<div class="ui attached merge-section segment {{if not $.LatestCommitStatus}}no-header{{end}}">
2017-03-16 23:57:43 -06:00
{{if .Issue.PullRequest.HasMerged}}
<div class="item text purple">
2019-09-03 00:29:36 -06:00
{{if .Issue.PullRequest.MergedCommitID}}
{{ $ link := printf "%s/commit/%s" $.Repository.HTMLURL .Issue.PullRequest.MergedCommitID}}
{{$.i18n.Tr "repo.pulls.merged_as" $ link (ShortSha .Issue.PullRequest.MergedCommitID) | Safe}}
{{else}}
{{$.i18n.Tr "repo.pulls.has_merged"}}
{{end}}
2017-03-16 23:57:43 -06:00
</div>
{{if .IsPullBranchDeletable}}
<div class="ui divider"></div>
<div>
<a class="delete-button ui red button" href="" data-url="{{.DeleteBranchLink}}">{{$.i18n.Tr "repo.branch.delete" .HeadTarget}}</a>
</div>
{{end}}
{{else if .Issue.IsClosed}}
<div class="item text grey">
2019-04-20 14:50:34 -06:00
{{if .IsPullRequestBroken}}
{{$.i18n.Tr "repo.pulls.cant_reopen_deleted_branch"}}
{{else}}
{{$.i18n.Tr "repo.pulls.reopen_to_merge"}}
{{end}}
2017-03-16 23:57:43 -06:00
</div>
2020-01-07 10:06:14 -07:00
{{if and .IsPullBranchDeletable ( not .IsPullRequestBroken )}}
2019-04-20 14:50:34 -06:00
<div class="ui divider"></div>
<div>
<a class="delete-button ui red button" href="" data-url="{{.DeleteBranchLink}}">{{$.i18n.Tr "repo.branch.delete" .HeadTarget}}</a>
</div>
{{end}}
2019-02-05 04:54:49 -07:00
{{else if .IsPullFilesConflicted}}
<div class="item text grey">
2020-09-11 14:19:00 -06:00
{{svg "octicon-x"}}
2019-02-05 04:54:49 -07:00
{{$.i18n.Tr "repo.pulls.files_conflicted"}}
{{range .ConflictedFiles}}
<div>{{.}}</div>
{{end}}
</div>
2018-07-31 21:00:35 -06:00
{{else if .IsPullRequestBroken}}
2017-03-16 23:57:43 -06:00
<div class="item text red">
2020-09-11 14:19:00 -06:00
<i class="icon icon-octicon">{{svg "octicon-x"}}</i>
2017-03-16 23:57:43 -06:00
{{$.i18n.Tr "repo.pulls.data_broken"}}
</div>
2018-08-13 13:04:39 -06:00
{{else if .IsPullWorkInProgress}}
<div class="item text grey">
2020-09-11 14:19:00 -06:00
<i class="icon icon-octicon">{{svg "octicon-x"}}</i>
2020-08-27 22:37:05 -06:00
{{$.i18n.Tr "repo.pulls.cannot_merge_work_in_progress" (.WorkInProgressPrefix|Escape) | Str2html}}
2018-08-13 13:04:39 -06:00
</div>
2017-03-16 23:57:43 -06:00
{{else if .Issue.PullRequest.IsChecking}}
<div class="item text yellow">
2020-09-11 14:19:00 -06:00
<i class="icon icon-octicon">{{svg "octicon-sync"}}</i>
2017-03-16 23:57:43 -06:00
{{$.i18n.Tr "repo.pulls.is_checking"}}
</div>
{{else if .Issue.PullRequest.CanAutoMerge}}
2020-01-11 00:29:34 -07:00
{{if .IsBlockedByApprovals}}
<div class="item text red">
2020-09-11 14:19:00 -06:00
<i class="icon icon-octicon">{{svg "octicon-x"}}</i>
2020-01-11 00:29:34 -07:00
{{$.i18n.Tr "repo.pulls.blocked_by_approvals" .GrantedApprovals .Issue.PullRequest.ProtectedBranch.RequiredApprovals}}
</div>
{{else if .IsBlockedByRejection}}
<div class="item text red">
2020-09-11 14:19:00 -06:00
<i class="icon icon-octicon">{{svg "octicon-x"}}</i>
2020-01-11 00:29:34 -07:00
{{$.i18n.Tr "repo.pulls.blocked_by_rejection"}}
</div>
2020-04-16 19:00:36 -06:00
{{else if .IsBlockedByOutdatedBranch}}
<div class="item text red">
2020-09-11 14:19:00 -06:00
<i class="icon icon-octicon">{{svg "octicon-x"}}</i>
2020-04-16 19:00:36 -06:00
{{$.i18n.Tr "repo.pulls.blocked_by_outdated_branch"}}
</div>
2020-01-21 20:46:04 -07:00
{{else if and .EnableStatusCheck (or .RequiredStatusCheckState.IsError .RequiredStatusCheckState.IsFailure)}}
2020-01-11 00:29:34 -07:00
<div class="item text red">
2020-09-11 14:19:00 -06:00
<i class="icon icon-octicon">{{svg "octicon-x"}}</i>
2020-01-11 00:29:34 -07:00
{{$.i18n.Tr "repo.pulls.required_status_check_failed"}}
</div>
2020-04-15 14:35:18 -06:00
{{else if and .EnableStatusCheck (not .RequiredStatusCheckState.IsSuccess)}}
<div class="item text red">
2020-09-11 14:19:00 -06:00
<i class="icon icon-octicon">{{svg "octicon-x"}}</i>
2020-04-15 14:35:18 -06:00
{{$.i18n.Tr "repo.pulls.required_status_check_missing"}}
</div>
2020-08-23 15:59:41 -06:00
{{else if and .AllowMerge .RequireSigned (not .WillSign)}}
2020-01-15 01:32:57 -07:00
<div class="item text red">
2020-09-11 14:19:00 -06:00
<i class="icon icon-octicon">{{svg "octicon-x"}}</i>
2020-01-15 01:32:57 -07:00
{{$.i18n.Tr "repo.pulls.require_signed_wont_sign"}}
</div>
<div class="item text yellow">
2020-01-18 04:30:35 -07:00
<i class="icon unlock"></i>
2020-01-15 01:32:57 -07:00
{{$.i18n.Tr (printf "repo.signing.wont_sign.%s" .WontSignReason) }}
</div>
2019-09-17 23:39:45 -06:00
{{end}}
2020-04-16 19:00:36 -06:00
{{ $ notAllOverridableChecksOk := or .IsBlockedByApprovals .IsBlockedByRejection .IsBlockedByOutdatedBranch (and .EnableStatusCheck (not .RequiredStatusCheckState.IsSuccess))}}
2020-08-23 15:59:41 -06:00
{{if and (or $.IsRepoAdmin (not $ notAllOverridableChecksOk )) (or (not .AllowMerge) (not .RequireSigned) .WillSign)}}
2020-01-16 14:01:22 -07:00
{{if $ notAllOverridableChecksOk }}
2019-09-17 23:39:45 -06:00
<div class="item text yellow">
2020-09-11 14:19:00 -06:00
<i class="icon icon-octicon">{{svg "octicon-dot-fill"}}</i>
2019-09-17 23:39:45 -06:00
{{$.i18n.Tr "repo.pulls.required_status_check_administrator"}}
2018-12-27 03:27:08 -07:00
</div>
2019-09-17 23:39:45 -06:00
{{else}}
<div class="item text green">
2020-09-11 14:19:00 -06:00
<i class="icon icon-octicon">{{svg "octicon-check"}}</i>
2019-09-17 23:39:45 -06:00
{{$.i18n.Tr "repo.pulls.can_auto_merge_desc"}}
2018-01-05 11:56:50 -07:00
</div>
2019-09-17 23:39:45 -06:00
{{end}}
2020-01-15 01:32:57 -07:00
{{if .WillSign}}
<div class="item text green">
<i class="icon lock green"></i>
{{$.i18n.Tr "repo.signing.will_sign" .SigningKey}}
</div>
2020-01-15 15:55:25 -07:00
{{else if .IsSigned}}
2020-01-18 04:30:35 -07:00
<div class="item text">
<i class="icon unlock"></i>
2020-01-15 01:32:57 -07:00
{{$.i18n.Tr (printf "repo.signing.wont_sign.%s" .WontSignReason) }}
</div>
{{end}}
2020-06-13 12:49:59 -06:00
{{end}}
2020-06-17 19:20:07 -06:00
2020-06-13 12:49:59 -06:00
{{ $ canAutoMerge = true}}
{{if (gt .Issue.PullRequest.CommitsBehind 0)}}
<div class="ui divider"></div>
<div class="item item-section text grey">
<div class="item-section-left">
2020-09-11 14:19:00 -06:00
<i class="icon icon-octicon">{{svg "octicon-alert"}}</i>
2020-06-13 12:49:59 -06:00
{{$.i18n.Tr "repo.pulls.outdated_with_base_branch"}}
</div>
<div class="item-section-right">
{{if .UpdateAllowed}}
<form action="{{.Link}}/update" method="post" class="ui update-branch-form">
{{.CsrfTokenHtml}}
<button class="ui compact button" data-do="update">
<span class="ui text">{{$.i18n.Tr "repo.pulls.update_branch"}}</span>
</button>
</form>
{{end}}
</div>
</div>
{{end}}
2020-08-23 15:59:41 -06:00
{{if and (or $.IsRepoAdmin (not $ notAllOverridableChecksOk )) (or (not .AllowMerge) (not .RequireSigned) .WillSign)}}
2019-09-17 23:39:45 -06:00
{{if .AllowMerge}}
{{ $ prUnit := .Repository.MustGetUnit $.UnitTypePullRequests}}
2019-12-30 16:34:11 -07:00
{{ $ approvers := .Issue.PullRequest.GetApprovers}}
2019-09-17 23:39:45 -06:00
{{if or $ prUnit . PullRequestsConfig . AllowMerge $ prUnit . PullRequestsConfig . AllowRebase $ prUnit . PullRequestsConfig . AllowRebaseMerge $ prUnit . PullRequestsConfig . AllowSquash }}
<div class="ui divider"></div>
{{if $ prUnit . PullRequestsConfig . AllowMerge }}
<div class="ui form merge-fields" style="display: none">
<form action="{{.Link}}/merge" method="post">
{{.CsrfTokenHtml}}
<div class="field">
<input type="text" name="merge_title_field" value="{{.Issue.PullRequest.GetDefaultMergeMessage}}">
</div>
<div class="field">
2020-01-09 07:31:09 -07:00
<textarea name="merge_message_field" rows="5" placeholder="{{$.i18n.Tr "repo.editor.commit_message_desc"}}">Reviewed-on: {{$.Issue.HTMLURL}}& #13;& #10;{{ $ approvers }}</textarea>
2019-09-17 23:39:45 -06:00
</div>
<button class="ui green button" type="submit" name="do" value="merge">
{{$.i18n.Tr "repo.pulls.merge_pull_request"}}
</button>
<button class="ui button merge-cancel">
{{$.i18n.Tr "cancel"}}
</button>
</form>
</div>
{{end}}
{{if $ prUnit . PullRequestsConfig . AllowRebase }}
<div class="ui form rebase-fields" style="display: none">
<form action="{{.Link}}/merge" method="post">
{{.CsrfTokenHtml}}
<button class="ui green button" type="submit" name="do" value="rebase">
{{$.i18n.Tr "repo.pulls.rebase_merge_pull_request"}}
</button>
<button class="ui button merge-cancel">
{{$.i18n.Tr "cancel"}}
</button>
</form>
</div>
{{end}}
{{if $ prUnit . PullRequestsConfig . AllowRebaseMerge }}
<div class="ui form rebase-merge-fields" style="display: none">
<form action="{{.Link}}/merge" method="post">
{{.CsrfTokenHtml}}
<div class="field">
<input type="text" name="merge_title_field" value="{{.Issue.PullRequest.GetDefaultMergeMessage}}">
</div>
<div class="field">
2020-01-09 07:31:09 -07:00
<textarea name="merge_message_field" rows="5" placeholder="{{$.i18n.Tr "repo.editor.commit_message_desc"}}">Reviewed-on: {{$.Issue.HTMLURL}}& #13;& #10;{{ $ approvers }}</textarea>
2019-09-17 23:39:45 -06:00
</div>
<button class="ui green button" type="submit" name="do" value="rebase-merge">
{{$.i18n.Tr "repo.pulls.rebase_merge_commit_pull_request"}}
</button>
<button class="ui button merge-cancel">
{{$.i18n.Tr "cancel"}}
</button>
</form>
</div>
{{end}}
{{if $ prUnit . PullRequestsConfig . AllowSquash }}
<div class="ui form squash-fields" style="display: none">
<form action="{{.Link}}/merge" method="post">
{{.CsrfTokenHtml}}
<div class="field">
<input type="text" name="merge_title_field" value="{{.Issue.PullRequest.GetDefaultSquashMessage}}">
</div>
<div class="field">
2020-04-10 05:26:37 -06:00
<textarea name="merge_message_field" rows="5" placeholder="{{$.i18n.Tr "repo.editor.commit_message_desc"}}">{{.GetCommitMessages}}Reviewed-on: {{$.Issue.HTMLURL}}& #13;& #10;{{ $ approvers }}</textarea>
2019-09-17 23:39:45 -06:00
</div>
<button class="ui green button" type="submit" name="do" value="squash">
{{$.i18n.Tr "repo.pulls.squash_merge_pull_request"}}
</button>
<button class="ui button merge-cancel">
{{$.i18n.Tr "cancel"}}
</button>
</form>
</div>
{{end}}
2020-01-16 14:01:22 -07:00
<div class="ui {{if $ notAllOverridableChecksOk }}red{{else}}green{{end}} buttons merge-button">
2019-09-17 23:39:45 -06:00
<button class="ui button" data-do="{{.MergeStyle}}">
2020-09-11 14:19:00 -06:00
{{svg "octicon-git-merge"}}
2019-09-17 23:39:45 -06:00
<span class="button-text">
{{if eq .MergeStyle "merge"}}
{{$.i18n.Tr "repo.pulls.merge_pull_request"}}
2018-01-05 11:56:50 -07:00
{{end}}
2019-09-17 23:39:45 -06:00
{{if eq .MergeStyle "rebase"}}
{{$.i18n.Tr "repo.pulls.rebase_merge_pull_request"}}
2018-01-05 11:56:50 -07:00
{{end}}
2019-09-17 23:39:45 -06:00
{{if eq .MergeStyle "rebase-merge"}}
{{$.i18n.Tr "repo.pulls.rebase_merge_commit_pull_request"}}
2018-12-27 03:27:08 -07:00
{{end}}
2019-09-17 23:39:45 -06:00
{{if eq .MergeStyle "squash"}}
{{$.i18n.Tr "repo.pulls.squash_merge_pull_request"}}
2018-01-05 11:56:50 -07:00
{{end}}
2019-09-17 23:39:45 -06:00
</span>
</button>
<div class="ui dropdown icon button">
<i class="dropdown icon"></i>
2020-06-17 19:20:07 -06:00
<div class="menu">
2019-09-17 23:39:45 -06:00
{{if $ prUnit . PullRequestsConfig . AllowMerge }}
<div class="item{{if eq .MergeStyle "merge"}} active selected{{end}}" data-do="merge">{{$.i18n.Tr "repo.pulls.merge_pull_request"}}</div>
{{end}}
{{if $ prUnit . PullRequestsConfig . AllowRebase }}
<div class="item{{if eq .MergeStyle "rebase"}} active selected{{end}}" data-do="rebase">{{$.i18n.Tr "repo.pulls.rebase_merge_pull_request"}}</div>
{{end}}
{{if $ prUnit . PullRequestsConfig . AllowRebaseMerge }}
<div class="item{{if eq .MergeStyle "rebase-merge"}} active selected{{end}}" data-do="rebase-merge">{{$.i18n.Tr "repo.pulls.rebase_merge_commit_pull_request"}}</div>
{{end}}
{{if $ prUnit . PullRequestsConfig . AllowSquash }}
<div class="item{{if eq .MergeStyle "squash"}} active selected{{end}}" data-do="squash">{{$.i18n.Tr "repo.pulls.squash_merge_pull_request"}}</div>
{{end}}
</div>
2018-01-05 11:56:50 -07:00
</div>
</div>
2019-09-17 23:39:45 -06:00
{{else}}
2020-06-13 12:49:59 -06:00
<div class="ui divider"></div>
2019-09-17 23:39:45 -06:00
<div class="item text red">
2020-09-11 14:19:00 -06:00
{{svg "octicon-x"}}
2019-09-17 23:39:45 -06:00
{{$.i18n.Tr "repo.pulls.no_merge_desc"}}
</div>
<div class="item text grey">
2020-09-11 14:19:00 -06:00
{{svg "octicon-info"}}
2019-09-17 23:39:45 -06:00
{{$.i18n.Tr "repo.pulls.no_merge_helper"}}
</div>
{{end}}
2020-01-11 00:29:34 -07:00
{{else}}
2020-06-13 12:49:59 -06:00
<div class="ui divider"></div>
2020-01-11 00:29:34 -07:00
<div class="item text grey">
2020-09-11 14:19:00 -06:00
{{svg "octicon-info"}}
2020-01-11 00:29:34 -07:00
{{$.i18n.Tr "repo.pulls.no_merge_access"}}
</div>
2018-01-05 11:56:50 -07:00
{{end}}
2017-03-16 23:57:43 -06:00
{{end}}
{{else}}
2020-01-11 00:29:34 -07:00
{{/* Merge conflict without specific file. Suggest manual merge, only if all reviews and status checks OK. */}}
{{if .IsBlockedByApprovals}}
<div class="item text red">
2020-09-11 14:19:00 -06:00
{{svg "octicon-x"}}
2020-01-11 00:29:34 -07:00
{{$.i18n.Tr "repo.pulls.blocked_by_approvals" .GrantedApprovals .Issue.PullRequest.ProtectedBranch.RequiredApprovals}}
</div>
{{else if .IsBlockedByRejection}}
<div class="item text red">
2020-09-11 14:19:00 -06:00
{{svg "octicon-x"}}
2020-01-11 00:29:34 -07:00
{{$.i18n.Tr "repo.pulls.blocked_by_rejection"}}
</div>
2020-04-16 19:00:36 -06:00
{{else if .IsBlockedByOutdatedBranch}}
<div class="item text red">
2020-09-11 14:19:00 -06:00
<i class="icon icon-octicon">{{svg "octicon-x"}}</i>
2020-04-16 19:00:36 -06:00
{{$.i18n.Tr "repo.pulls.blocked_by_outdated_branch"}}
</div>
2020-04-15 14:35:18 -06:00
{{else if and .EnableStatusCheck (not .RequiredStatusCheckState.IsSuccess)}}
2020-01-11 00:29:34 -07:00
<div class="item text red">
2020-09-11 14:19:00 -06:00
{{svg "octicon-x"}}
2020-01-11 00:29:34 -07:00
{{$.i18n.Tr "repo.pulls.required_status_check_failed"}}
</div>
2020-01-15 01:32:57 -07:00
{{else if and .RequireSigned (not .WillSign)}}
<div class="item text red">
2020-09-11 14:19:00 -06:00
{{svg "octicon-x"}}
2020-01-15 01:32:57 -07:00
{{$.i18n.Tr "repo.pulls.require_signed_wont_sign"}}
</div>
2020-01-11 00:29:34 -07:00
{{else}}
<div class="item text red">
2020-09-11 14:19:00 -06:00
{{svg "octicon-x"}}
2020-01-11 00:29:34 -07:00
{{$.i18n.Tr "repo.pulls.cannot_auto_merge_desc"}}
</div>
<div class="item text grey">
2020-09-11 14:19:00 -06:00
{{svg "octicon-info"}}
2020-01-11 00:29:34 -07:00
{{$.i18n.Tr "repo.pulls.cannot_auto_merge_helper"}}
</div>
{{end}}
2017-03-16 23:57:43 -06:00
{{end}}
2020-06-13 12:49:59 -06:00
{{if and (gt .Issue.PullRequest.CommitsBehind 0) (not .Issue.IsClosed) (not .Issue.PullRequest.IsChecking) (not .IsPullFilesConflicted) (not .IsPullRequestBroken) (not $ canAutoMerge )}}
<div class="item text grey">
2020-09-11 14:19:00 -06:00
<i class="icon icon-octicon">{{svg "octicon-alert"}}</i>
2020-06-13 12:49:59 -06:00
{{$.i18n.Tr "repo.pulls.outdated_with_base_branch"}}
{{if .UpdateAllowed}}
<form action="{{.Link}}/update" method="post" class="ui floating right">
{{.CsrfTokenHtml}}
<button class="ui compact button" data-do="update">
<span class="ui text">{{$.i18n.Tr "repo.pulls.update_branch"}}</span>
</button>
</form>
{{end}}
</div>
{{end}}
2017-03-16 23:57:43 -06:00
</div>
</div>
</div>