mirror of
				https://codeberg.org/forgejo/forgejo.git
				synced 2025-11-04 08:21:11 +00:00 
			
		
		
		
	This variable name conflict happened because both https://codeberg.org/forgejo/forgejo/pulls/7699 and https://codeberg.org/forgejo/forgejo/pulls/7508 introduced the same names in different places and were merged at the same time. Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/8066 Reviewed-by: Michael Kriese <michael.kriese@gmx.de> Co-authored-by: Earl Warren <contact@earl-warren.org> Co-committed-by: Earl Warren <contact@earl-warren.org>
		
			
				
	
	
		
			54 lines
		
	
	
	
		
			1.6 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			54 lines
		
	
	
	
		
			1.6 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
// Copyright 2023 The Gitea Authors. All rights reserved.
 | 
						|
// SPDX-License-Identifier: MIT
 | 
						|
 | 
						|
package structs
 | 
						|
 | 
						|
import (
 | 
						|
	"time"
 | 
						|
)
 | 
						|
 | 
						|
// ActionTask represents a ActionTask
 | 
						|
type ActionTask struct {
 | 
						|
	ID           int64  `json:"id"`
 | 
						|
	Name         string `json:"name"`
 | 
						|
	HeadBranch   string `json:"head_branch"`
 | 
						|
	HeadSHA      string `json:"head_sha"`
 | 
						|
	RunNumber    int64  `json:"run_number"`
 | 
						|
	Event        string `json:"event"`
 | 
						|
	DisplayTitle string `json:"display_title"`
 | 
						|
	Status       string `json:"status"`
 | 
						|
	WorkflowID   string `json:"workflow_id"`
 | 
						|
	URL          string `json:"url"`
 | 
						|
	// swagger:strfmt date-time
 | 
						|
	CreatedAt time.Time `json:"created_at"`
 | 
						|
	// swagger:strfmt date-time
 | 
						|
	UpdatedAt time.Time `json:"updated_at"`
 | 
						|
	// swagger:strfmt date-time
 | 
						|
	RunStartedAt time.Time `json:"run_started_at"`
 | 
						|
}
 | 
						|
 | 
						|
// ActionTaskResponse returns a ActionTask
 | 
						|
type ActionTaskResponse struct {
 | 
						|
	Entries    []*ActionTask `json:"workflow_runs"`
 | 
						|
	TotalCount int64         `json:"total_count"`
 | 
						|
}
 | 
						|
 | 
						|
// ActionRun represents an ActionRun
 | 
						|
type RepoActionRun struct {
 | 
						|
	ID              int64  `json:"id"`
 | 
						|
	Name            string `json:"name"`
 | 
						|
	RunNumber       int64  `json:"run_number"`
 | 
						|
	Event           string `json:"event"`
 | 
						|
	Status          string `json:"status"`
 | 
						|
	HeadBranch      string `json:"head_branch"`
 | 
						|
	HeadSHA         string `json:"head_sha"`
 | 
						|
	WorkflowID      string `json:"workflow_id"`
 | 
						|
	URL             string `json:"url"`
 | 
						|
	TriggeringActor *User  `json:"triggering_actor"`
 | 
						|
}
 | 
						|
 | 
						|
// ListActionRunResponse return a list of ActionRun
 | 
						|
type ListRepoActionRunResponse struct {
 | 
						|
	Entries    []*RepoActionRun `json:"workflow_runs"`
 | 
						|
	TotalCount int64            `json:"total_count"`
 | 
						|
}
 |