mirror of
				https://gitee.com/gitea/gitea
				synced 2025-11-04 08:30:25 +08:00 
			
		
		
		
	Don't filter action runs based on state (#24711)
We should just show all runs. This removes the filtering altogether. - Replaces https://github.com/go-gitea/gitea/pull/24553 # Before   # After  --------- Signed-off-by: Yarden Shoham <git@yardenshoham.com>
This commit is contained in:
		@@ -10,7 +10,6 @@ import (
 | 
			
		||||
	repo_model "code.gitea.io/gitea/models/repo"
 | 
			
		||||
	user_model "code.gitea.io/gitea/models/user"
 | 
			
		||||
	"code.gitea.io/gitea/modules/container"
 | 
			
		||||
	"code.gitea.io/gitea/modules/util"
 | 
			
		||||
 | 
			
		||||
	"xorm.io/builder"
 | 
			
		||||
)
 | 
			
		||||
@@ -69,7 +68,6 @@ type FindRunOptions struct {
 | 
			
		||||
	db.ListOptions
 | 
			
		||||
	RepoID           int64
 | 
			
		||||
	OwnerID          int64
 | 
			
		||||
	IsClosed         util.OptionalBool
 | 
			
		||||
	WorkflowFileName string
 | 
			
		||||
	TriggerUserID    int64
 | 
			
		||||
	Approved         bool // not util.OptionalBool, it works only when it's true
 | 
			
		||||
@@ -83,14 +81,6 @@ func (opts FindRunOptions) toConds() builder.Cond {
 | 
			
		||||
	if opts.OwnerID > 0 {
 | 
			
		||||
		cond = cond.And(builder.Eq{"owner_id": opts.OwnerID})
 | 
			
		||||
	}
 | 
			
		||||
	if opts.IsClosed.IsFalse() {
 | 
			
		||||
		cond = cond.And(builder.Eq{"status": StatusWaiting}.Or(
 | 
			
		||||
			builder.Eq{"status": StatusRunning}))
 | 
			
		||||
	} else if opts.IsClosed.IsTrue() {
 | 
			
		||||
		cond = cond.And(
 | 
			
		||||
			builder.Neq{"status": StatusWaiting}.And(
 | 
			
		||||
				builder.Neq{"status": StatusRunning}))
 | 
			
		||||
	}
 | 
			
		||||
	if opts.WorkflowFileName != "" {
 | 
			
		||||
		cond = cond.And(builder.Eq{"workflow_id": opts.WorkflowFileName})
 | 
			
		||||
	}
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user