Add filter to list repository pipelines API (#4416)

This commit is contained in:
6543
2024-11-28 22:33:52 +01:00
committed by GitHub
parent 9fedc88a9c
commit 52fb493495
7 changed files with 95 additions and 15 deletions

View File

@@ -61,8 +61,11 @@ func (Pipeline) TableName() string {
}
type PipelineFilter struct {
Before int64
After int64
Before int64
After int64
Branch string
Events []WebhookEvent
RefContains string
}
// IsMultiPipeline checks if step list contain more than one parent step.