2020-10-14 17:41:11 +05:30
|
|
|
{{if or .PullReviewers .OriginalReviews }}
|
2018-11-22 18:47:36 +05:30
|
|
|
<div class="comment box">
|
|
|
|
<div class="content">
|
|
|
|
<div class="ui segment">
|
2022-06-28 02:28:46 +05:30
|
|
|
<h4>{{$.locale.Tr "repo.issues.review.reviewers"}}</h4>
|
2019-12-04 06:38:56 +05:30
|
|
|
{{range .PullReviewers}}
|
2022-06-28 02:28:46 +05:30
|
|
|
{{ $createdStr:= TimeSinceUnix .Review.UpdatedUnix $.locale }}
|
2018-11-22 18:47:36 +05:30
|
|
|
<div class="ui divider"></div>
|
|
|
|
<div class="review-item">
|
2020-06-15 13:07:00 +05:30
|
|
|
<div class="review-item-left">
|
2020-10-13 01:25:13 +05:30
|
|
|
{{if .User}}
|
2020-12-04 00:16:11 +05:30
|
|
|
<a href="{{.User.HomeLink}}">
|
|
|
|
{{avatar .User}}
|
2020-10-13 01:25:13 +05:30
|
|
|
</a>
|
|
|
|
{{end}}
|
2021-05-28 01:32:04 +05:30
|
|
|
<span>
|
2020-10-13 01:25:13 +05:30
|
|
|
{{if .User}}
|
2020-11-04 14:41:19 +05:30
|
|
|
<a href="{{.User.HomeLink}}">{{.User.GetDisplayName}}</a>
|
2020-10-13 01:25:13 +05:30
|
|
|
{{else if .Team}}
|
|
|
|
<span class="ui text">{{$.Issue.Repo.OwnerName}}/{{.Team.Name}}</span>
|
|
|
|
{{end}}
|
|
|
|
{{if eq .Review.Type 1}}
|
2022-06-28 02:28:46 +05:30
|
|
|
{{$.locale.Tr "repo.issues.review.approve" $createdStr | Safe}}
|
2020-10-13 01:25:13 +05:30
|
|
|
{{else if eq .Review.Type 2}}
|
2022-06-28 02:28:46 +05:30
|
|
|
{{$.locale.Tr "repo.issues.review.comment" $createdStr | Safe}}
|
2020-10-13 01:25:13 +05:30
|
|
|
{{else if eq .Review.Type 3}}
|
2022-06-28 02:28:46 +05:30
|
|
|
{{$.locale.Tr "repo.issues.review.reject" $createdStr | Safe}}
|
2020-10-13 01:25:13 +05:30
|
|
|
{{else if eq .Review.Type 4}}
|
2022-06-28 02:28:46 +05:30
|
|
|
{{$.locale.Tr "repo.issues.review.wait" $createdStr | Safe}}
|
2020-06-15 13:07:00 +05:30
|
|
|
{{else}}
|
2022-06-28 02:28:46 +05:30
|
|
|
{{$.locale.Tr "repo.issues.review.comment" $createdStr | Safe}}
|
2020-04-06 22:03:34 +05:30
|
|
|
{{end}}
|
2020-06-15 13:07:00 +05:30
|
|
|
</span>
|
|
|
|
</div>
|
|
|
|
<div class="review-item-right">
|
2020-10-13 01:25:13 +05:30
|
|
|
{{if .Review.Stale}}
|
2022-06-28 02:28:46 +05:30
|
|
|
<span class="ui tooltip type-icon text grey" data-content="{{$.locale.Tr "repo.issues.is_stale"}}">
|
2021-05-23 02:59:46 +05:30
|
|
|
{{svg "octicon-hourglass" 16 "icon"}}
|
2021-02-11 23:02:25 +05:30
|
|
|
</span>
|
|
|
|
{{end}}
|
|
|
|
{{if (and $.Permission.IsAdmin (or (eq .Review.Type 1) (eq .Review.Type 3)) (not $.Issue.IsClosed))}}
|
2022-06-28 02:28:46 +05:30
|
|
|
<a href="#" class="ui muted tooltip icon dismiss-review-btn" data-review-id="dismiss-review-{{.Review.ID}}" data-content="{{$.locale.Tr "repo.issues.dismiss_review"}}">
|
2021-02-11 23:02:25 +05:30
|
|
|
{{svg "octicon-x" 16}}
|
|
|
|
</a>
|
|
|
|
<div class="ui small modal" id="dismiss-review-modal">
|
|
|
|
<div class="header">
|
2022-06-28 02:28:46 +05:30
|
|
|
{{$.locale.Tr "repo.issues.dismiss_review"}}
|
2021-02-11 23:02:25 +05:30
|
|
|
</div>
|
|
|
|
<div class="content">
|
|
|
|
<div class="ui warning message text left">
|
2022-06-28 02:28:46 +05:30
|
|
|
{{$.locale.Tr "repo.issues.dismiss_review_warning"}}
|
2021-02-11 23:02:25 +05:30
|
|
|
</div>
|
|
|
|
<form class="ui form dismiss-review-form" id="dismiss-review-{{.Review.ID}}" action="{{$.RepoLink}}/issues/dismiss_review" method="post">
|
|
|
|
{{$.CsrfTokenHtml}}
|
|
|
|
<input type="hidden" name="review_id" value="{{.Review.ID}}">
|
|
|
|
<div class="field">
|
2022-06-28 02:28:46 +05:30
|
|
|
<label for="message">{{$.locale.Tr "action.review_dismissed_reason"}}</label>
|
2021-02-11 23:02:25 +05:30
|
|
|
<input id="message" name="message">
|
|
|
|
</div>
|
|
|
|
<div class="text right actions">
|
2022-06-28 02:28:46 +05:30
|
|
|
<div class="ui cancel button">{{$.locale.Tr "settings.cancel"}}</div>
|
|
|
|
<button class="ui red button" type="submit">{{$.locale.Tr "ok"}}</button>
|
2021-02-11 23:02:25 +05:30
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
</div>
|
2020-04-06 22:03:34 +05:30
|
|
|
{{end}}
|
2020-10-13 01:25:13 +05:30
|
|
|
<span class="type-icon text {{if eq .Review.Type 1}}green
|
|
|
|
{{- else if eq .Review.Type 2}}grey
|
|
|
|
{{- else if eq .Review.Type 3}}red
|
|
|
|
{{- else if eq .Review.Type 4}}yellow
|
2020-06-15 13:07:00 +05:30
|
|
|
{{else}}grey{{end}}">
|
2020-04-06 22:03:34 +05:30
|
|
|
|
2020-10-13 01:25:13 +05:30
|
|
|
{{if .CanChange }}
|
2022-06-28 02:28:46 +05:30
|
|
|
<a href="#" class="ui tooltip icon re-request-review {{if .Checked}}checked{{end}}" data-issue-id="{{$.Issue.ID}}" data-content="{{if .Checked}} {{$.locale.Tr "repo.issues.remove_request_review"}} {{else}} {{$.locale.Tr "repo.issues.re_request_review"}} {{end}}" data-id="{{.ItemID}}" data-update-url="{{$.RepoLink}}/issues/request_review">
|
2021-03-22 09:34:19 +05:30
|
|
|
{{if .Checked}} {{svg "octicon-trash"}} {{else}} {{svg "octicon-sync"}} {{end}}
|
2020-06-15 13:07:00 +05:30
|
|
|
</a>
|
|
|
|
{{end}}
|
2020-10-13 01:25:13 +05:30
|
|
|
{{svg (printf "octicon-%s" .Review.Type.Icon)}}
|
2020-06-15 13:07:00 +05:30
|
|
|
</span>
|
|
|
|
</div>
|
2018-11-22 18:47:36 +05:30
|
|
|
</div>
|
|
|
|
{{end}}
|
2020-10-14 17:41:11 +05:30
|
|
|
{{range .OriginalReviews}}
|
2022-06-28 02:28:46 +05:30
|
|
|
{{ $createdStr:= TimeSinceUnix .UpdatedUnix $.locale }}
|
2020-10-14 17:41:11 +05:30
|
|
|
<div class="ui divider"></div>
|
|
|
|
<div class="review-item">
|
|
|
|
<div class="review-item-left">
|
2022-06-28 02:28:46 +05:30
|
|
|
<a href="{{$.Repository.OriginalURL}}" class="ui tooltip" data-content="{{$.locale.Tr "repo.migrated_from_fake" ($.Repository.GetOriginalURLHostname|Escape) | Safe }}">
|
2021-09-18 21:52:51 +05:30
|
|
|
<span class="text black ">
|
|
|
|
{{svg (MigrationIcon $.Repository.GetOriginalURLHostname)}}
|
|
|
|
{{ .OriginalAuthor }}
|
|
|
|
</span>
|
|
|
|
</a>
|
2020-10-14 17:41:11 +05:30
|
|
|
</div>
|
|
|
|
<div class="review-item-right">
|
|
|
|
<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}}">
|
|
|
|
{{svg (printf "octicon-%s" .Type.Icon)}}
|
|
|
|
</span>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{{end}}
|
2018-11-22 18:47:36 +05:30
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{{end}}
|
2020-04-11 03:31:41 +05:30
|
|
|
<div class="timeline-item comment merge box">
|
|
|
|
<a class="timeline-avatar text {{if .Issue.PullRequest.HasMerged}}purple
|
2020-04-03 10:42:42 +05:30
|
|
|
{{- 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-11-29 01:00:46 +05:30
|
|
|
{{- else if .IsBlockedByOfficialReviewRequests}}red
|
2020-04-17 06:30:36 +05:30
|
|
|
{{- else if .IsBlockedByOutdatedBranch}}red
|
2020-10-14 00:20:57 +05:30
|
|
|
{{- else if .IsBlockedByChangedProtectedFiles}}red
|
2020-04-03 10:42:42 +05:30
|
|
|
{{- else if and .EnableStatusCheck (or .RequiredStatusCheckState.IsFailure .RequiredStatusCheckState.IsError)}}red
|
2020-04-16 02:05:18 +05:30
|
|
|
{{- else if and .EnableStatusCheck (or (not $.LatestCommitStatus) .RequiredStatusCheckState.IsPending .RequiredStatusCheckState.IsWarning)}}yellow
|
2020-08-24 03:29:41 +05:30
|
|
|
{{- else if and .AllowMerge .RequireSigned (not .WillSign)}}red
|
2020-04-03 10:42:42 +05:30
|
|
|
{{- else if .Issue.PullRequest.IsChecking}}yellow
|
2021-03-04 09:11:23 +05:30
|
|
|
{{- else if .Issue.PullRequest.IsEmpty}}grey
|
2020-04-03 10:42:42 +05:30
|
|
|
{{- else if .Issue.PullRequest.CanAutoMerge}}green
|
|
|
|
{{- else}}red{{end}}">{{svg "octicon-git-merge" 32}}</a>
|
2017-03-17 11:27:43 +05:30
|
|
|
<div class="content">
|
2019-06-30 13:27:59 +05:30
|
|
|
{{template "repo/pulls/status" .}}
|
2020-06-14 00:19:59 +05:30
|
|
|
{{$canAutoMerge := false}}
|
2020-05-26 00:38:06 +05:30
|
|
|
<div class="ui attached merge-section segment {{if not $.LatestCommitStatus}}no-header{{end}}">
|
2017-03-17 11:27:43 +05:30
|
|
|
{{if .Issue.PullRequest.HasMerged}}
|
2020-11-16 02:28:16 +05:30
|
|
|
<div class="item text">
|
2019-09-03 11:59:36 +05:30
|
|
|
{{if .Issue.PullRequest.MergedCommitID}}
|
2021-11-16 23:48:25 +05:30
|
|
|
{{$link := printf "%s/commit/%s" $.Repository.HTMLURL (.Issue.PullRequest.MergedCommitID|PathEscape)}}
|
2021-03-04 09:11:23 +05:30
|
|
|
{{if eq $.Issue.PullRequest.Status 3}}
|
2022-06-28 02:28:46 +05:30
|
|
|
{{$.locale.Tr "repo.pulls.manually_merged_as" ($link|Escape) (ShortSha .Issue.PullRequest.MergedCommitID) | Safe}}
|
2021-03-04 09:11:23 +05:30
|
|
|
{{else}}
|
2022-06-28 02:28:46 +05:30
|
|
|
{{$.locale.Tr "repo.pulls.merged_as" ($link|Escape) (ShortSha .Issue.PullRequest.MergedCommitID) | Safe}}
|
2021-03-04 09:11:23 +05:30
|
|
|
{{end}}
|
2019-09-03 11:59:36 +05:30
|
|
|
{{else}}
|
2022-06-28 02:28:46 +05:30
|
|
|
{{$.locale.Tr "repo.pulls.has_merged"}}
|
2019-09-03 11:59:36 +05:30
|
|
|
{{end}}
|
2017-03-17 11:27:43 +05:30
|
|
|
</div>
|
|
|
|
{{if .IsPullBranchDeletable}}
|
|
|
|
<div class="ui divider"></div>
|
|
|
|
<div>
|
2022-06-28 02:28:46 +05:30
|
|
|
<a class="delete-button ui red button" href="" data-url="{{.DeleteBranchLink}}">{{$.locale.Tr "repo.branch.delete" .HeadTarget}}</a>
|
2017-03-17 11:27:43 +05:30
|
|
|
</div>
|
|
|
|
{{end}}
|
|
|
|
{{else if .Issue.IsClosed}}
|
2020-11-16 02:28:16 +05:30
|
|
|
<div class="item text">
|
2019-04-21 02:20:34 +05:30
|
|
|
{{if .IsPullRequestBroken}}
|
2022-06-28 02:28:46 +05:30
|
|
|
{{$.locale.Tr "repo.pulls.cant_reopen_deleted_branch"}}
|
2019-04-21 02:20:34 +05:30
|
|
|
{{else}}
|
2022-06-28 02:28:46 +05:30
|
|
|
{{$.locale.Tr "repo.pulls.reopen_to_merge"}}
|
2019-04-21 02:20:34 +05:30
|
|
|
{{end}}
|
2017-03-17 11:27:43 +05:30
|
|
|
</div>
|
2020-01-07 22:36:14 +05:30
|
|
|
{{if and .IsPullBranchDeletable ( not .IsPullRequestBroken )}}
|
2019-04-21 02:20:34 +05:30
|
|
|
<div class="ui divider"></div>
|
|
|
|
<div>
|
2022-06-28 02:28:46 +05:30
|
|
|
<a class="delete-button ui red button" href="" data-url="{{.DeleteBranchLink}}">{{$.locale.Tr "repo.branch.delete" .HeadTarget}}</a>
|
2019-04-21 02:20:34 +05:30
|
|
|
</div>
|
|
|
|
{{end}}
|
2019-02-05 17:24:49 +05:30
|
|
|
{{else if .IsPullFilesConflicted}}
|
2020-11-16 02:28:16 +05:30
|
|
|
<div class="item text">
|
2020-09-12 01:49:00 +05:30
|
|
|
{{svg "octicon-x"}}
|
2022-06-28 02:28:46 +05:30
|
|
|
{{$.locale.Tr "repo.pulls.files_conflicted"}}
|
2019-02-05 17:24:49 +05:30
|
|
|
{{range .ConflictedFiles}}
|
|
|
|
<div>{{.}}</div>
|
|
|
|
{{end}}
|
|
|
|
</div>
|
2018-08-01 08:30:35 +05:30
|
|
|
{{else if .IsPullRequestBroken}}
|
2020-11-16 02:28:16 +05:30
|
|
|
<div class="item">
|
2020-09-12 01:49:00 +05:30
|
|
|
<i class="icon icon-octicon">{{svg "octicon-x"}}</i>
|
2022-06-28 02:28:46 +05:30
|
|
|
{{$.locale.Tr "repo.pulls.data_broken"}}
|
2017-03-17 11:27:43 +05:30
|
|
|
</div>
|
2018-08-14 00:34:39 +05:30
|
|
|
{{else if .IsPullWorkInProgress}}
|
2021-11-16 23:48:25 +05:30
|
|
|
<div class="item toggle-wip df ac sb" data-title="{{.Issue.Title}}" data-wip-prefix="{{(.WorkInProgressPrefix|Escape)}}" data-update-url="{{.Issue.Link}}/title">
|
2021-05-28 01:32:04 +05:30
|
|
|
<div>
|
|
|
|
<i class="icon icon-octicon">{{svg "octicon-x"}}</i>
|
2022-06-28 02:28:46 +05:30
|
|
|
{{$.locale.Tr "repo.pulls.cannot_merge_work_in_progress" }}
|
2021-05-28 01:32:04 +05:30
|
|
|
</div>
|
|
|
|
<div>
|
|
|
|
{{if or .HasIssuesOrPullsWritePermission .IsIssuePoster}}
|
|
|
|
<button class="ui compact button">
|
2022-06-28 02:28:46 +05:30
|
|
|
{{$.locale.Tr "repo.pulls.remove_prefix" (.WorkInProgressPrefix|Escape) | Safe}}
|
2021-05-28 01:32:04 +05:30
|
|
|
</button>
|
|
|
|
{{end}}
|
|
|
|
</div>
|
2018-08-14 00:34:39 +05:30
|
|
|
</div>
|
2017-03-17 11:27:43 +05:30
|
|
|
{{else if .Issue.PullRequest.IsChecking}}
|
2020-11-16 02:28:16 +05:30
|
|
|
<div class="item">
|
2020-09-12 01:49:00 +05:30
|
|
|
<i class="icon icon-octicon">{{svg "octicon-sync"}}</i>
|
2022-06-28 02:28:46 +05:30
|
|
|
{{$.locale.Tr "repo.pulls.is_checking"}}
|
2017-03-17 11:27:43 +05:30
|
|
|
</div>
|
2022-07-13 13:52:51 +05:30
|
|
|
{{else if .Issue.PullRequest.IsAncestor}}
|
2021-05-28 01:32:04 +05:30
|
|
|
<div class="item">
|
2021-03-04 09:11:23 +05:30
|
|
|
<i class="icon icon-octicon">{{svg "octicon-alert" 16}}</i>
|
2022-07-13 13:52:51 +05:30
|
|
|
{{$.locale.Tr "repo.pulls.is_ancestor"}}
|
2021-03-04 09:11:23 +05:30
|
|
|
</div>
|
2022-07-13 13:52:51 +05:30
|
|
|
{{else if or .Issue.PullRequest.CanAutoMerge .Issue.PullRequest.IsEmpty}}
|
2020-01-11 12:59:34 +05:30
|
|
|
{{if .IsBlockedByApprovals}}
|
2020-11-16 02:28:16 +05:30
|
|
|
<div class="item">
|
2020-09-12 01:49:00 +05:30
|
|
|
<i class="icon icon-octicon">{{svg "octicon-x"}}</i>
|
2022-06-28 02:28:46 +05:30
|
|
|
{{$.locale.Tr "repo.pulls.blocked_by_approvals" .GrantedApprovals .Issue.PullRequest.ProtectedBranch.RequiredApprovals}}
|
2020-01-11 12:59:34 +05:30
|
|
|
</div>
|
|
|
|
{{else if .IsBlockedByRejection}}
|
2020-11-16 02:28:16 +05:30
|
|
|
<div class="item">
|
2020-09-12 01:49:00 +05:30
|
|
|
<i class="icon icon-octicon">{{svg "octicon-x"}}</i>
|
2022-06-28 02:28:46 +05:30
|
|
|
{{$.locale.Tr "repo.pulls.blocked_by_rejection"}}
|
2020-01-11 12:59:34 +05:30
|
|
|
</div>
|
2020-11-29 01:00:46 +05:30
|
|
|
{{else if .IsBlockedByOfficialReviewRequests}}
|
|
|
|
<div class="item">
|
|
|
|
<i class="icon icon-octicon">{{svg "octicon-x"}}</i>
|
2022-06-28 02:28:46 +05:30
|
|
|
{{$.locale.Tr "repo.pulls.blocked_by_official_review_requests"}}
|
2020-11-29 01:00:46 +05:30
|
|
|
</div>
|
2020-04-17 06:30:36 +05:30
|
|
|
{{else if .IsBlockedByOutdatedBranch}}
|
2020-11-16 02:28:16 +05:30
|
|
|
<div class="item">
|
2020-09-12 01:49:00 +05:30
|
|
|
<i class="icon icon-octicon">{{svg "octicon-x"}}</i>
|
2022-06-28 02:28:46 +05:30
|
|
|
{{$.locale.Tr "repo.pulls.blocked_by_outdated_branch"}}
|
2020-04-17 06:30:36 +05:30
|
|
|
</div>
|
2020-10-14 00:20:57 +05:30
|
|
|
{{else if .IsBlockedByChangedProtectedFiles}}
|
2020-11-16 02:28:16 +05:30
|
|
|
<div class="item">
|
2020-10-14 00:20:57 +05:30
|
|
|
<i class="icon icon-octicon">{{svg "octicon-x" 16}}</i>
|
2022-06-28 02:28:46 +05:30
|
|
|
{{$.locale.TrN $.ChangedProtectedFilesNum "repo.pulls.blocked_by_changed_protected_files_1" "repo.pulls.blocked_by_changed_protected_files_n" | Safe }}
|
2020-10-14 00:20:57 +05:30
|
|
|
<div class="ui ordered list">
|
|
|
|
{{range .ChangedProtectedFiles}}
|
|
|
|
<div data-value="-" class="item">{{.}}</div>
|
|
|
|
{{end}}
|
|
|
|
</div>
|
|
|
|
</div>
|
2020-01-22 09:16:04 +05:30
|
|
|
{{else if and .EnableStatusCheck (or .RequiredStatusCheckState.IsError .RequiredStatusCheckState.IsFailure)}}
|
2020-11-16 02:28:16 +05:30
|
|
|
<div class="item">
|
2020-09-12 01:49:00 +05:30
|
|
|
<i class="icon icon-octicon">{{svg "octicon-x"}}</i>
|
2022-06-28 02:28:46 +05:30
|
|
|
{{$.locale.Tr "repo.pulls.required_status_check_failed"}}
|
2020-01-11 12:59:34 +05:30
|
|
|
</div>
|
2020-04-16 02:05:18 +05:30
|
|
|
{{else if and .EnableStatusCheck (not .RequiredStatusCheckState.IsSuccess)}}
|
2020-11-16 02:28:16 +05:30
|
|
|
<div class="item">
|
2020-09-12 01:49:00 +05:30
|
|
|
<i class="icon icon-octicon">{{svg "octicon-x"}}</i>
|
2022-06-28 02:28:46 +05:30
|
|
|
{{$.locale.Tr "repo.pulls.required_status_check_missing"}}
|
2020-04-16 02:05:18 +05:30
|
|
|
</div>
|
2020-08-24 03:29:41 +05:30
|
|
|
{{else if and .AllowMerge .RequireSigned (not .WillSign)}}
|
2020-11-16 02:28:16 +05:30
|
|
|
<div class="item">
|
2020-09-12 01:49:00 +05:30
|
|
|
<i class="icon icon-octicon">{{svg "octicon-x"}}</i>
|
2022-06-28 02:28:46 +05:30
|
|
|
{{$.locale.Tr "repo.pulls.require_signed_wont_sign"}}
|
2020-01-15 14:02:57 +05:30
|
|
|
</div>
|
2020-11-16 02:28:16 +05:30
|
|
|
<div class="item">
|
2020-01-18 17:00:35 +05:30
|
|
|
<i class="icon unlock"></i>
|
2022-06-28 02:28:46 +05:30
|
|
|
{{$.locale.Tr (printf "repo.signing.wont_sign.%s" .WontSignReason) }}
|
2020-01-15 14:02:57 +05:30
|
|
|
</div>
|
2019-09-18 11:09:45 +05:30
|
|
|
{{end}}
|
2022-06-11 20:14:20 +05:30
|
|
|
|
2020-11-29 01:00:46 +05:30
|
|
|
{{$notAllOverridableChecksOk := or .IsBlockedByApprovals .IsBlockedByRejection .IsBlockedByOfficialReviewRequests .IsBlockedByOutdatedBranch .IsBlockedByChangedProtectedFiles (and .EnableStatusCheck (not .RequiredStatusCheckState.IsSuccess))}}
|
2022-06-11 20:14:20 +05:30
|
|
|
|
Fix various typos (#20338)
* Fix various typos
Found via `codespell -q 3 -S ./options/locale,./options/license,./public/vendor -L actived,allways,attachements,ba,befores,commiter,pullrequest,pullrequests,readby,splitted,te,unknwon`
Co-authored-by: zeripath <art27@cantab.net>
2022-07-13 03:02:37 +05:30
|
|
|
{{/* admin can merge without checks, writer can merge when checks succeed */}}
|
2022-06-11 20:14:20 +05:30
|
|
|
{{$canMergeNow := and (or $.IsRepoAdmin (not $notAllOverridableChecksOk)) (or (not .AllowMerge) (not .RequireSigned) .WillSign)}}
|
|
|
|
{{/* admin and writer both can make an auto merge schedule */}}
|
|
|
|
|
|
|
|
{{if $canMergeNow}}
|
2020-01-17 02:31:22 +05:30
|
|
|
{{if $notAllOverridableChecksOk}}
|
2020-11-16 02:28:16 +05:30
|
|
|
<div class="item">
|
2020-09-12 01:49:00 +05:30
|
|
|
<i class="icon icon-octicon">{{svg "octicon-dot-fill"}}</i>
|
2022-06-28 02:28:46 +05:30
|
|
|
{{$.locale.Tr "repo.pulls.required_status_check_administrator"}}
|
2018-12-27 15:57:08 +05:30
|
|
|
</div>
|
2019-09-18 11:09:45 +05:30
|
|
|
{{else}}
|
2020-11-16 02:28:16 +05:30
|
|
|
<div class="item">
|
2020-09-12 01:49:00 +05:30
|
|
|
<i class="icon icon-octicon">{{svg "octicon-check"}}</i>
|
2022-06-28 02:28:46 +05:30
|
|
|
{{$.locale.Tr "repo.pulls.can_auto_merge_desc"}}
|
2018-01-06 00:26:50 +05:30
|
|
|
</div>
|
2019-09-18 11:09:45 +05:30
|
|
|
{{end}}
|
2020-01-15 14:02:57 +05:30
|
|
|
{{if .WillSign}}
|
2020-11-16 02:28:16 +05:30
|
|
|
<div class="item">
|
2020-01-15 14:02:57 +05:30
|
|
|
<i class="icon lock green"></i>
|
2022-06-28 02:28:46 +05:30
|
|
|
{{$.locale.Tr "repo.signing.will_sign" .SigningKey}}
|
2020-01-15 14:02:57 +05:30
|
|
|
</div>
|
2020-01-16 04:25:25 +05:30
|
|
|
{{else if .IsSigned}}
|
2020-11-16 02:28:16 +05:30
|
|
|
<div class="item">
|
2020-01-18 17:00:35 +05:30
|
|
|
<i class="icon unlock"></i>
|
2022-06-28 02:28:46 +05:30
|
|
|
{{$.locale.Tr (printf "repo.signing.wont_sign.%s" .WontSignReason) }}
|
2020-01-15 14:02:57 +05:30
|
|
|
</div>
|
|
|
|
{{end}}
|
2020-06-14 00:19:59 +05:30
|
|
|
{{end}}
|
2022-06-17 10:22:06 +05:30
|
|
|
{{if and (gt .Issue.PullRequest.CommitsBehind 0) (not .Issue.IsClosed) (not .Issue.PullRequest.IsChecking) (not .IsPullFilesConflicted) (not .IsPullRequestBroken) (not $canAutoMerge)}}
|
2020-06-14 00:19:59 +05:30
|
|
|
<div class="ui divider"></div>
|
2020-11-16 02:28:16 +05:30
|
|
|
<div class="item item-section">
|
2020-06-14 00:19:59 +05:30
|
|
|
<div class="item-section-left">
|
2020-09-12 01:49:00 +05:30
|
|
|
<i class="icon icon-octicon">{{svg "octicon-alert"}}</i>
|
2022-06-28 02:28:46 +05:30
|
|
|
{{$.locale.Tr "repo.pulls.outdated_with_base_branch"}}
|
2020-06-14 00:19:59 +05:30
|
|
|
</div>
|
|
|
|
<div class="item-section-right">
|
2021-08-31 19:33:45 +05:30
|
|
|
{{if and .UpdateAllowed .UpdateByRebaseAllowed }}
|
|
|
|
<div class="dib">
|
|
|
|
<div class="ui buttons update-button">
|
|
|
|
<button class="ui button" data-do="{{.Link}}/update" data-redirect="{{.Link}}">
|
|
|
|
<span class="button-text">
|
2022-06-28 02:28:46 +05:30
|
|
|
{{$.locale.Tr "repo.pulls.update_branch"}}
|
2021-08-31 19:33:45 +05:30
|
|
|
</span>
|
|
|
|
</button>
|
|
|
|
|
|
|
|
<div class="ui dropdown icon button no-text">
|
|
|
|
{{svg "octicon-triangle-down" 14 "dropdown icon"}}
|
|
|
|
<div class="menu">
|
2022-06-28 02:28:46 +05:30
|
|
|
<div class="item active selected" data-do="{{.Link}}/update">{{$.locale.Tr "repo.pulls.update_branch"}}</div>
|
|
|
|
<div class="item" data-do="{{.Link}}/update?style=rebase">{{$.locale.Tr "repo.pulls.update_branch_rebase"}}</div>
|
2021-08-31 19:33:45 +05:30
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{{end}}
|
|
|
|
{{if and .UpdateAllowed (not .UpdateByRebaseAllowed)}}
|
2020-06-14 00:19:59 +05:30
|
|
|
<form action="{{.Link}}/update" method="post" class="ui update-branch-form">
|
|
|
|
{{.CsrfTokenHtml}}
|
|
|
|
<button class="ui compact button" data-do="update">
|
2022-06-28 02:28:46 +05:30
|
|
|
<span class="ui text">{{$.locale.Tr "repo.pulls.update_branch"}}</span>
|
2020-06-14 00:19:59 +05:30
|
|
|
</button>
|
|
|
|
</form>
|
|
|
|
{{end}}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{{end}}
|
2022-07-13 13:52:51 +05:30
|
|
|
{{if .Issue.PullRequest.IsEmpty}}
|
|
|
|
<div class="ui divider"></div>
|
|
|
|
|
|
|
|
<div class="item">
|
|
|
|
<i class="icon icon-octicon">{{svg "octicon-alert" 16}}</i>
|
|
|
|
{{$.locale.Tr "repo.pulls.is_empty"}}
|
|
|
|
</div>
|
|
|
|
{{end}}
|
2020-06-14 00:19:59 +05:30
|
|
|
|
2022-06-11 20:14:20 +05:30
|
|
|
{{if .AllowMerge}} {{/* user is allowed to merge */}}
|
|
|
|
{{$prUnit := .Repository.MustGetUnit $.UnitTypePullRequests}}
|
|
|
|
{{$approvers := .Issue.PullRequest.GetApprovers}}
|
|
|
|
{{if or $prUnit.PullRequestsConfig.AllowMerge $prUnit.PullRequestsConfig.AllowRebase $prUnit.PullRequestsConfig.AllowRebaseMerge $prUnit.PullRequestsConfig.AllowSquash}}
|
|
|
|
{{$hasPendingPullRequestMergeTip := ""}}
|
|
|
|
{{if .HasPendingPullRequestMerge}}
|
2022-06-28 02:28:46 +05:30
|
|
|
{{$createdPRMergeStr := TimeSinceUnix .PendingPullRequestMerge.CreatedUnix $.locale}}
|
|
|
|
{{$hasPendingPullRequestMergeTip = $.locale.Tr "repo.pulls.auto_merge_has_pending_schedule" .PendingPullRequestMerge.Doer.Name $createdPRMergeStr}}
|
2022-06-11 20:14:20 +05:30
|
|
|
{{end}}
|
|
|
|
<div class="ui divider"></div>
|
|
|
|
<script>
|
|
|
|
(() => {
|
|
|
|
const defaultMergeTitle = {{.DefaultMergeMessage}};
|
|
|
|
const defaultSquashMergeTitle = {{.DefaultSquashMergeMessage}};
|
|
|
|
const defaultMergeMessage = 'Reviewed-on: ' + {{$.Issue.HTMLURL}} + '\n' + {{$approvers}};
|
|
|
|
const mergeForm = {
|
|
|
|
'baseLink': {{.Link}},
|
2022-06-28 02:28:46 +05:30
|
|
|
'textCancel': {{$.locale.Tr "cancel"}},
|
|
|
|
'textDeleteBranch': {{$.locale.Tr "repo.branch.delete" .HeadTarget}},
|
|
|
|
'textAutoMergeButtonWhenSucceed': {{$.locale.Tr "repo.pulls.auto_merge_button_when_succeed"}},
|
|
|
|
'textAutoMergeWhenSucceed': {{$.locale.Tr "repo.pulls.auto_merge_when_succeed"}},
|
|
|
|
'textAutoMergeCancelSchedule': {{$.locale.Tr "repo.pulls.auto_merge_cancel_schedule"}},
|
2022-05-12 19:09:02 +05:30
|
|
|
|
2022-06-11 20:14:20 +05:30
|
|
|
'canMergeNow': {{$canMergeNow}},
|
|
|
|
'allOverridableChecksOk': {{not $notAllOverridableChecksOk}},
|
2022-07-13 13:52:51 +05:30
|
|
|
'emptyCommit': {{.Issue.PullRequest.IsEmpty}},
|
2022-06-11 20:14:20 +05:30
|
|
|
'pullHeadCommitID': {{.PullHeadCommitID}},
|
|
|
|
'isPullBranchDeletable': {{.IsPullBranchDeletable}},
|
|
|
|
'defaultDeleteBranchAfterMerge': {{$prUnit.PullRequestsConfig.DefaultDeleteBranchAfterMerge}},
|
2022-06-28 02:28:46 +05:30
|
|
|
'mergeMessageFieldPlaceHolder': {{$.locale.Tr "repo.editor.commit_message_desc"}},
|
2022-05-12 19:09:02 +05:30
|
|
|
|
2022-06-11 20:14:20 +05:30
|
|
|
'hasPendingPullRequestMerge': {{.HasPendingPullRequestMerge}},
|
|
|
|
'hasPendingPullRequestMergeTip': {{$hasPendingPullRequestMergeTip}},
|
|
|
|
};
|
2022-05-12 19:09:02 +05:30
|
|
|
|
2022-06-11 20:14:20 +05:30
|
|
|
const generalHideAutoMerge = mergeForm.canMergeNow && mergeForm.allOverridableChecksOk; // if this PR can be merged now, then hide the auto merge
|
|
|
|
mergeForm['mergeStyles'] = [
|
|
|
|
{
|
|
|
|
'name': 'merge',
|
|
|
|
'allowed': {{$prUnit.PullRequestsConfig.AllowMerge}},
|
2022-06-28 02:28:46 +05:30
|
|
|
'textDoMerge': {{$.locale.Tr "repo.pulls.merge_pull_request"}},
|
2022-06-11 20:14:20 +05:30
|
|
|
'mergeTitleFieldText': defaultMergeTitle,
|
|
|
|
'mergeMessageFieldText': defaultMergeMessage,
|
|
|
|
'hideAutoMerge': generalHideAutoMerge,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'name': 'rebase',
|
|
|
|
'allowed': {{$prUnit.PullRequestsConfig.AllowRebase}},
|
2022-06-28 02:28:46 +05:30
|
|
|
'textDoMerge': {{$.locale.Tr "repo.pulls.rebase_merge_pull_request"}},
|
2022-06-11 20:14:20 +05:30
|
|
|
'hideMergeMessageTexts': true,
|
|
|
|
'hideAutoMerge': generalHideAutoMerge,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'name': 'rebase-merge',
|
|
|
|
'allowed': {{$prUnit.PullRequestsConfig.AllowRebaseMerge}},
|
2022-06-28 02:28:46 +05:30
|
|
|
'textDoMerge': {{$.locale.Tr "repo.pulls.rebase_merge_commit_pull_request"}},
|
2022-06-11 20:14:20 +05:30
|
|
|
'mergeTitleFieldText': defaultMergeTitle,
|
|
|
|
'mergeMessageFieldText': defaultMergeMessage,
|
|
|
|
'hideAutoMerge': generalHideAutoMerge,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'name': 'squash',
|
|
|
|
'allowed': {{$prUnit.PullRequestsConfig.AllowSquash}},
|
2022-06-28 02:28:46 +05:30
|
|
|
'textDoMerge': {{$.locale.Tr "repo.pulls.squash_merge_pull_request"}},
|
2022-06-11 20:14:20 +05:30
|
|
|
'mergeTitleFieldText': defaultSquashMergeTitle,
|
|
|
|
'mergeMessageFieldText': defaultMergeMessage,
|
|
|
|
'hideAutoMerge': generalHideAutoMerge,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'name': 'manually-merged',
|
|
|
|
'allowed': {{and $prUnit.PullRequestsConfig.AllowManualMerge $.IsRepoAdmin}},
|
2022-06-28 02:28:46 +05:30
|
|
|
'textDoMerge': {{$.locale.Tr "repo.pulls.merge_manually"}},
|
2022-06-11 20:14:20 +05:30
|
|
|
'hideMergeMessageTexts': true,
|
|
|
|
'hideAutoMerge': true,
|
|
|
|
}
|
|
|
|
];
|
|
|
|
window.config.pageData.pullRequestMergeForm = mergeForm;
|
|
|
|
})();
|
|
|
|
</script>
|
2022-05-12 19:09:02 +05:30
|
|
|
|
2022-06-11 20:14:20 +05:30
|
|
|
<div id="pull-request-merge-form"></div>
|
2022-05-12 19:09:02 +05:30
|
|
|
|
2022-06-11 20:14:20 +05:30
|
|
|
{{if .ShowMergeInstructions}}
|
2022-06-28 02:28:46 +05:30
|
|
|
{{template "repo/issue/view_content/pull_merge_instruction" (dict "locale" .locale "Issue" .Issue)}}
|
2019-09-18 11:09:45 +05:30
|
|
|
{{end}}
|
2020-01-11 12:59:34 +05:30
|
|
|
{{else}}
|
2022-06-11 20:14:20 +05:30
|
|
|
{{/* no merge style was set in repo setting: not or ($prUnit.PullRequestsConfig.AllowMerge ...) */}}
|
2020-06-14 00:19:59 +05:30
|
|
|
<div class="ui divider"></div>
|
2022-06-11 20:14:20 +05:30
|
|
|
<div class="item text red">
|
|
|
|
{{svg "octicon-x"}}
|
2022-06-28 02:28:46 +05:30
|
|
|
{{$.locale.Tr "repo.pulls.no_merge_desc"}}
|
2022-06-11 20:14:20 +05:30
|
|
|
</div>
|
2021-05-28 01:32:04 +05:30
|
|
|
<div class="item">
|
2020-09-12 01:49:00 +05:30
|
|
|
{{svg "octicon-info"}}
|
2022-06-28 02:28:46 +05:30
|
|
|
{{$.locale.Tr "repo.pulls.no_merge_helper"}}
|
2020-01-11 12:59:34 +05:30
|
|
|
</div>
|
2022-06-11 20:14:20 +05:30
|
|
|
{{end}} {{/* end if the repo was set to use any merge style */}}
|
|
|
|
{{else}}
|
|
|
|
{{/* user is not allowed to merge */}}
|
|
|
|
<div class="ui divider"></div>
|
|
|
|
<div class="item">
|
|
|
|
{{svg "octicon-info"}}
|
2022-06-28 02:28:46 +05:30
|
|
|
{{$.locale.Tr "repo.pulls.no_merge_access"}}
|
2022-06-11 20:14:20 +05:30
|
|
|
</div>
|
|
|
|
{{end}} {{/* end if user is allowed to merge or not */}}
|
2017-03-17 11:27:43 +05:30
|
|
|
{{else}}
|
2020-01-11 12:59:34 +05:30
|
|
|
{{/* 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-12 01:49:00 +05:30
|
|
|
{{svg "octicon-x"}}
|
2022-06-28 02:28:46 +05:30
|
|
|
{{$.locale.Tr "repo.pulls.blocked_by_approvals" .GrantedApprovals .Issue.PullRequest.ProtectedBranch.RequiredApprovals}}
|
2020-01-11 12:59:34 +05:30
|
|
|
</div>
|
|
|
|
{{else if .IsBlockedByRejection}}
|
|
|
|
<div class="item text red">
|
2020-09-12 01:49:00 +05:30
|
|
|
{{svg "octicon-x"}}
|
2022-06-28 02:28:46 +05:30
|
|
|
{{$.locale.Tr "repo.pulls.blocked_by_rejection"}}
|
2020-11-29 01:00:46 +05:30
|
|
|
</div>
|
|
|
|
{{else if .IsBlockedByOfficialReviewRequests}}
|
|
|
|
<div class="item text red">
|
|
|
|
{{svg "octicon-x"}}
|
2022-06-28 02:28:46 +05:30
|
|
|
{{$.locale.Tr "repo.pulls.blocked_by_official_review_requests"}}
|
2020-01-11 12:59:34 +05:30
|
|
|
</div>
|
2020-04-17 06:30:36 +05:30
|
|
|
{{else if .IsBlockedByOutdatedBranch}}
|
|
|
|
<div class="item text red">
|
2020-09-12 01:49:00 +05:30
|
|
|
<i class="icon icon-octicon">{{svg "octicon-x"}}</i>
|
2022-06-28 02:28:46 +05:30
|
|
|
{{$.locale.Tr "repo.pulls.blocked_by_outdated_branch"}}
|
2020-04-17 06:30:36 +05:30
|
|
|
</div>
|
2020-10-14 00:20:57 +05:30
|
|
|
{{else if .IsBlockedByChangedProtectedFiles}}
|
|
|
|
<div class="item text red">
|
|
|
|
<i class="icon icon-octicon">{{svg "octicon-x" 16}}</i>
|
2022-06-28 02:28:46 +05:30
|
|
|
{{$.locale.TrN $.ChangedProtectedFilesNum "repo.pulls.blocked_by_changed_protected_files_1" "repo.pulls.blocked_by_changed_protected_files_n" | Safe }}
|
2020-10-14 00:20:57 +05:30
|
|
|
<div class="ui ordered list">
|
|
|
|
{{range .ChangedProtectedFiles}}
|
|
|
|
<div data-value="-" class="item">{{.}}</div>
|
|
|
|
{{end}}
|
|
|
|
</div>
|
|
|
|
</div>
|
2020-04-16 02:05:18 +05:30
|
|
|
{{else if and .EnableStatusCheck (not .RequiredStatusCheckState.IsSuccess)}}
|
2020-01-11 12:59:34 +05:30
|
|
|
<div class="item text red">
|
2020-09-12 01:49:00 +05:30
|
|
|
{{svg "octicon-x"}}
|
2022-06-28 02:28:46 +05:30
|
|
|
{{$.locale.Tr "repo.pulls.required_status_check_failed"}}
|
2020-01-11 12:59:34 +05:30
|
|
|
</div>
|
2020-01-15 14:02:57 +05:30
|
|
|
{{else if and .RequireSigned (not .WillSign)}}
|
|
|
|
<div class="item text red">
|
2020-09-12 01:49:00 +05:30
|
|
|
{{svg "octicon-x"}}
|
2022-06-28 02:28:46 +05:30
|
|
|
{{$.locale.Tr "repo.pulls.require_signed_wont_sign"}}
|
2020-01-15 14:02:57 +05:30
|
|
|
</div>
|
2020-01-11 12:59:34 +05:30
|
|
|
{{else}}
|
|
|
|
<div class="item text red">
|
2020-09-12 01:49:00 +05:30
|
|
|
{{svg "octicon-x"}}
|
2022-06-28 02:28:46 +05:30
|
|
|
{{$.locale.Tr "repo.pulls.cannot_auto_merge_desc"}}
|
2020-01-11 12:59:34 +05:30
|
|
|
</div>
|
2021-05-28 01:32:04 +05:30
|
|
|
<div class="item">
|
2020-09-12 01:49:00 +05:30
|
|
|
{{svg "octicon-info"}}
|
2022-06-28 02:28:46 +05:30
|
|
|
{{$.locale.Tr "repo.pulls.cannot_auto_merge_helper"}}
|
2020-01-11 12:59:34 +05:30
|
|
|
</div>
|
|
|
|
{{end}}
|
2017-03-17 11:27:43 +05:30
|
|
|
{{end}}
|
2020-06-14 00:19:59 +05:30
|
|
|
|
2021-03-04 09:11:23 +05:30
|
|
|
{{if $.StillCanManualMerge}}
|
|
|
|
<div class="ui divider"></div>
|
|
|
|
<div class="ui form manually-merged-fields" style="display: none">
|
|
|
|
<form action="{{.Link}}/merge" method="post">
|
|
|
|
{{.CsrfTokenHtml}}
|
|
|
|
<div class="field">
|
2022-06-28 02:28:46 +05:30
|
|
|
<input type="text" name="merge_commit_id" placeholder="{{$.locale.Tr "repo.pulls.merge_commit_id"}}">
|
2021-03-04 09:11:23 +05:30
|
|
|
</div>
|
|
|
|
<button class="ui red button" type="submit" name="do" value="manually-merged">
|
2022-06-28 02:28:46 +05:30
|
|
|
{{$.locale.Tr "repo.pulls.merge_manually"}}
|
2021-03-04 09:11:23 +05:30
|
|
|
</button>
|
|
|
|
<button class="ui button merge-cancel">
|
2022-06-28 02:28:46 +05:30
|
|
|
{{$.locale.Tr "cancel"}}
|
2021-03-04 09:11:23 +05:30
|
|
|
</button>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="ui red buttons merge-button">
|
|
|
|
<button class="ui button" data-do="manually-merged">
|
2022-06-28 02:28:46 +05:30
|
|
|
{{$.locale.Tr "repo.pulls.merge_manually"}}
|
2021-03-04 09:11:23 +05:30
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
{{end}}
|
2017-03-17 11:27:43 +05:30
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|