{{.Run.Pipeline}} {{if ne .Run.Pipeline .Run.Name}} - {{.Run.Name}} {{end}}
- Path
- {{.RunPath}}
- Created at
- {{.Run.CreatedAt}}
- Status
- {{.Run.Status}}
- Error
- {{.Run.Error}}
- Status updated
- {{.Run.StatusUpdated}}
- Git commit hash
- {{if .Run.GitCommitHash}}
{{.Run.GitCommitHash}}
{{else}}
(none)
{{end}}
- Git branch
- {{if .Run.GitBranch}}
{{.Run.GitBranch}}
{{else}}
(none)
{{end}}
{{if .Params}}
Params
{{range $p := .Params}}
{{$p.Name}} |
{{$p.Value}} |
{{end}}
{{end}}
{{if .Artifacts}}
Artifacts
{{end}}
{{if .ChildRuns}}
Child Runs
Relative Path |
Timestamp |
Pipeline |
Name |
Status |
{{range $cr := .ChildRuns}}
{{$cr.RelativePath}} |
{{$cr.Run.Timestamp}} |
{{$cr.Run.Pipeline}} |
{{$cr.Run.Name}} |
{{$cr.Run.Status}} |
{{end}}
{{end}}
{{if .Run.Results}}
Results
{{range $res := .Run.Results}}
{{$res.Name}} |
{{toHTML $res.Value}} |
{{end}}
{{end}}
{{if .FeedStats}}
Feed Stats
Feed |
In |
Out |
{{range $s := .FeedStats}}
{{$s.Feed}} |
{{$s.Stats.In}} |
{{$s.Stats.Out}} |
{{end}}
{{end}}