WorkflowName returns the human-readable name of the workflow that this run belongs to. TODO: consider lazy-loading the underlying API data to avoid extra API calls unless necessary
()
| 158 | // WorkflowName returns the human-readable name of the workflow that this run belongs to. |
| 159 | // TODO: consider lazy-loading the underlying API data to avoid extra API calls unless necessary |
| 160 | func (r Run) WorkflowName() string { |
| 161 | return r.workflowName |
| 162 | } |
| 163 | |
| 164 | func (r *Run) ExportData(fields []string) map[string]interface{} { |
| 165 | v := reflect.ValueOf(r).Elem() |
no outgoing calls
no test coverage detected