Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type ActionRun ¶
type ActionRun struct {
ID int64 `json:"id"`
Title string `json:"title"`
WorkflowID string `json:"workflow_id"`
IndexInRepo int64 `json:"index_in_repo"`
Event string `json:"event"`
Status string `json:"status"`
CommitSHA string `json:"commit_sha"`
PrettyRef string `json:"prettyref"`
Created string `json:"created"`
Updated string `json:"updated"`
Started string `json:"started"`
}
ActionRun represents a workflow run
type ActionRunList ¶
type ActionRunList struct {
TotalCount int `json:"total_count"`
WorkflowRuns []ActionRun `json:"workflow_runs"`
}
ActionRunList represents a list of workflow runs
type 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"`
CreatedAt string `json:"created_at"`
UpdatedAt string `json:"updated_at"`
RunStartedAt string `json:"run_started_at"`
}
ActionTask represents a job/task within a workflow run
type ActionTaskList ¶
type ActionTaskList struct {
WorkflowRuns []ActionTask `json:"workflow_runs"`
TotalCount int `json:"total_count"`
}
ActionTaskList represents a list of tasks/jobs
Click to show internal directories.
Click to hide internal directories.