Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions types/atlas_reception.go
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,19 @@ type AnalysisRun struct {
Meta map[string]string `json:"_meta"`
}

// CheckRun represents a single check run.
type CheckRun struct {
RunID string `json:"run_id"`
RunSerial string `json:"run_serial"`
Config string `json:"config"`
DSConfigUpdated bool `json:"ds_config_updated"`
IsFullRun bool `json:"is_full_run"`
VCSMeta AnalysisRunVCSMeta `json:"vcs_meta"`
Keys Keys `json:"keys"`
Check Check `json:"check"`
Meta map[string]string `json:"_meta"`
}

//proteus:generate
type IDERun struct {
RunID string `json:"run_id"`
Expand Down