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