mirror of
				https://gitee.com/gitea/gitea
				synced 2025-11-04 16:40:24 +08:00 
			
		
		
		
	Fix #25776. Close #25826. In the discussion of #25776, @wolfogre's suggestion was to remove the commit status of `running` and `warning` to keep it consistent with github. references: - https://docs.github.com/en/rest/commits/statuses?apiVersion=2022-11-28#about-commit-statuses ## ⚠️ BREAKING ⚠️ So the commit status of Gitea will be consistent with GitHub, only `pending`, `success`, `error` and `failure`, while `warning` and `running` are not supported anymore. --------- Co-authored-by: Jason Song <i@wolfogre.com>
		
			
				
	
	
		
			51 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			51 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
// Copyright 2020 The Gitea Authors. All rights reserved.
 | 
						|
// SPDX-License-Identifier: MIT
 | 
						|
 | 
						|
package structs
 | 
						|
 | 
						|
// CommitStatusState holds the state of a CommitStatus
 | 
						|
// It can be "pending", "success", "error", "failure", and "warning"
 | 
						|
type CommitStatusState string
 | 
						|
 | 
						|
const (
 | 
						|
	// CommitStatusPending is for when the CommitStatus is Pending
 | 
						|
	CommitStatusPending CommitStatusState = "pending"
 | 
						|
	// CommitStatusSuccess is for when the CommitStatus is Success
 | 
						|
	CommitStatusSuccess CommitStatusState = "success"
 | 
						|
	// CommitStatusError is for when the CommitStatus is Error
 | 
						|
	CommitStatusError CommitStatusState = "error"
 | 
						|
	// CommitStatusFailure is for when the CommitStatus is Failure
 | 
						|
	CommitStatusFailure CommitStatusState = "failure"
 | 
						|
)
 | 
						|
 | 
						|
// NoBetterThan returns true if this State is no better than the given State
 | 
						|
func (css CommitStatusState) NoBetterThan(css2 CommitStatusState) bool {
 | 
						|
	commitStatusPriorities := map[CommitStatusState]int{
 | 
						|
		CommitStatusError:   0,
 | 
						|
		CommitStatusFailure: 1,
 | 
						|
		CommitStatusPending: 2,
 | 
						|
		CommitStatusSuccess: 3,
 | 
						|
	}
 | 
						|
	return commitStatusPriorities[css] <= commitStatusPriorities[css2]
 | 
						|
}
 | 
						|
 | 
						|
// IsPending represents if commit status state is pending
 | 
						|
func (css CommitStatusState) IsPending() bool {
 | 
						|
	return css == CommitStatusPending
 | 
						|
}
 | 
						|
 | 
						|
// IsSuccess represents if commit status state is success
 | 
						|
func (css CommitStatusState) IsSuccess() bool {
 | 
						|
	return css == CommitStatusSuccess
 | 
						|
}
 | 
						|
 | 
						|
// IsError represents if commit status state is error
 | 
						|
func (css CommitStatusState) IsError() bool {
 | 
						|
	return css == CommitStatusError
 | 
						|
}
 | 
						|
 | 
						|
// IsFailure represents if commit status state is failure
 | 
						|
func (css CommitStatusState) IsFailure() bool {
 | 
						|
	return css == CommitStatusFailure
 | 
						|
}
 |