mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-11-03 08:02:36 +09:00 
			
		
		
		
	Add merged commit id on pull view when it's merged (#8062)
This commit is contained in:
		@@ -971,6 +971,7 @@ pulls.tab_files = Files Changed
 | 
				
			|||||||
pulls.reopen_to_merge = Please reopen this pull request to perform a merge.
 | 
					pulls.reopen_to_merge = Please reopen this pull request to perform a merge.
 | 
				
			||||||
pulls.cant_reopen_deleted_branch = This pull request cannot be reopened because the branch was deleted.
 | 
					pulls.cant_reopen_deleted_branch = This pull request cannot be reopened because the branch was deleted.
 | 
				
			||||||
pulls.merged = Merged
 | 
					pulls.merged = Merged
 | 
				
			||||||
 | 
					pulls.merged_as = The pull request has been merged as <a rel="nofollow" class="ui sha" href="%[1]s"><code>%[2]s</code></a>.
 | 
				
			||||||
pulls.has_merged = The pull request has been merged.
 | 
					pulls.has_merged = The pull request has been merged.
 | 
				
			||||||
pulls.title_wip_desc = `<a href="#">Start the title with <strong>%s</strong></a> to prevent the pull request from being merged accidentally.`
 | 
					pulls.title_wip_desc = `<a href="#">Start the title with <strong>%s</strong></a> to prevent the pull request from being merged accidentally.`
 | 
				
			||||||
pulls.cannot_merge_work_in_progress = This pull request is marked as a work in progress. Remove the <strong>%s</strong> prefix from the title when it's ready
 | 
					pulls.cannot_merge_work_in_progress = This pull request is marked as a work in progress. Remove the <strong>%s</strong> prefix from the title when it's ready
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -49,7 +49,12 @@
 | 
				
			|||||||
		<div class="ui {{if not $.LatestCommitStatus}}top attached header{{else}}attached merge-section segment{{end}}">
 | 
							<div class="ui {{if not $.LatestCommitStatus}}top attached header{{else}}attached merge-section segment{{end}}">
 | 
				
			||||||
			{{if .Issue.PullRequest.HasMerged}}
 | 
								{{if .Issue.PullRequest.HasMerged}}
 | 
				
			||||||
				<div class="item text purple">
 | 
									<div class="item text purple">
 | 
				
			||||||
 | 
										{{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"}}
 | 
											{{$.i18n.Tr "repo.pulls.has_merged"}}
 | 
				
			||||||
 | 
										{{end}}
 | 
				
			||||||
				</div>
 | 
									</div>
 | 
				
			||||||
				{{if .IsPullBranchDeletable}}
 | 
									{{if .IsPullBranchDeletable}}
 | 
				
			||||||
					<div class="ui divider"></div>
 | 
										<div class="ui divider"></div>
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user