mirror of
				https://gitee.com/gitea/gitea
				synced 2025-11-04 00:20:25 +08:00 
			
		
		
		
	* refuse merge until ci successfully * deny merge request when required status checkes not succeed on merge Post and API * add database migration for added columns on protected_branch * fix migration * fix protected branch check bug * fix protected branch settings * remove duplicated code on check pull request's required commit statuses pass * remove unused codes * fix migration * add newline for template file * fix go mod * rename function name and some other fixes * fix template * fix bug pull view * remove go1.12 wrong dependencies * add administrator bypass when protected branch status check enabled * fix bug * improve the codes
		
			
				
	
	
		
			27 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Cheetah
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Cheetah
		
	
	
	
	
	
{{if $.LatestCommitStatus}}
 | 
						|
    <div class="ui top attached header">
 | 
						|
         {{if eq .LatestCommitStatus.State "pending"}}
 | 
						|
            {{$.i18n.Tr "repo.pulls.status_checking"}}
 | 
						|
        {{else if eq .LatestCommitStatus.State "success"}}
 | 
						|
            {{$.i18n.Tr "repo.pulls.status_checks_success"}}
 | 
						|
        {{else if eq .LatestCommitStatus.State "error"}}
 | 
						|
            {{$.i18n.Tr "repo.pulls.status_checks_error"}}
 | 
						|
        {{else}}
 | 
						|
            {{$.i18n.Tr "repo.pulls.status_checking"}}
 | 
						|
        {{end}}
 | 
						|
    </div>
 | 
						|
 | 
						|
    {{range $.LatestCommitStatuses}}
 | 
						|
        <div class="ui attached segment">
 | 
						|
            <span>{{template "repo/commit_status" .}}</span>
 | 
						|
            <span class="ui">{{.Context}} <span class="text grey">{{.Description}}</span></span>
 | 
						|
            <div class="ui right">
 | 
						|
                {{if $.is_context_required}}
 | 
						|
                    {{if (call $.is_context_required .Context)}}<div class="ui label">Required</div>{{end}} 
 | 
						|
                {{end}}
 | 
						|
                <span class="ui">{{if .TargetURL}}<a href="{{.TargetURL}}">Details</a>{{end}}</span>
 | 
						|
            </div>
 | 
						|
        </div>
 | 
						|
    {{end}}
 | 
						|
{{end}}
 |