Documentation
¶
Index ¶
Constants ¶
View Source
const SshGw = "https://sshgw.actuated.dev"
Variables ¶
This section is empty.
Functions ¶
func MakeVersion ¶ added in v0.1.2
func PrintASCIIArt ¶ added in v0.1.2
func PrintASCIIArt()
Types ¶
type DeviceAuth ¶ added in v0.1.0
type DeviceAuth struct {
DeviceCode string `json:"device_code"`
UserCode string `json:"user_code"`
VerificationURI string `json:"verification_uri"`
ExpiresIn int `json:"expires_in"`
Interval int `json:"interval"`
}
DeviceAuth is the device auth response from GitHub and is used to exchange for a personal access token
type JobStatus ¶ added in v0.2.6
type JobStatus struct {
JobID int64 `json:"job_id"`
Owner string `json:"owner"`
Repo string `json:"repo"`
WorkflowName string `json:"workflow_name"`
JobName string `json:"job_name"`
Actor string `json:"actor,omitempty"`
RunnerName string `json:"runner_name,omitempty"`
Status string `json:"status"`
Conclusion string `json:"conclusion,omitempty"`
Labels []string `json:"labels,omitempty"`
UpdatedAt *time.Time `json:"updated_at"`
StartedAt *time.Time `json:"startedAt,omitempty"`
CompletedAt *time.Time `json:"completedAt,omitempty"`
AgentName string `json:"agent_name,omitempty"`
AverageRuntime time.Duration `json:"averageRuntime,omitempty"`
QueuedAt *time.Time `json:"queuedAt,omitempty"`
}
Click to show internal directories.
Click to hide internal directories.