gitea/modules/structs/repo_actions.go

35 lines
968 B
Go
Raw Normal View History

2023-08-23 02:11:40 +02:00
// Copyright 2023 The Gitea Authors. All rights reserved.
// SPDX-License-Identifier: MIT
package structs
import (
"time"
)
2023-08-23 16:13:39 +02:00
// ActionTask represents a ActionTask
type ActionTask struct {
2023-08-30 17:34:01 +02:00
ID int64 `json:"id"`
2023-08-23 16:13:39 +02:00
Name string `json:"name"`
HeadBranch string `json:"head_branch"`
HeadSHA string `json:"head_sha"`
2023-08-23 16:13:39 +02:00
RunNumber int64 `json:"run_number"`
Event string `json:"event"`
DisplayTitle string `json:"display_title"`
Status string `json:"status"`
WorkflowID string `json:"workflow_id"`
2023-08-30 17:34:01 +02:00
URL string `json:"url"`
// swagger:strfmt date-time
CreatedAt time.Time `json:"created_at"`
// swagger:strfmt date-time
UpdatedAt time.Time `json:"updated_at"`
2023-08-23 16:13:39 +02:00
// swagger:strfmt date-time
RunStartedAt time.Time `json:"run_started_at"`
2023-08-23 16:13:39 +02:00
}
// ActionTaskResponse returns a ActionTask
type ActionTaskResponse struct {
Entries []*ActionTask `json:"workflow_runs"`
TotalCount int64 `json:"total_count"`
}