(fields []string)
| 51 | } |
| 52 | |
| 53 | func (w *Workflow) ExportData(fields []string) map[string]interface{} { |
| 54 | return cmdutil.StructExportData(w, fields) |
| 55 | } |
| 56 | |
| 57 | func GetWorkflows(client *api.Client, repo ghrepo.Interface, limit int) ([]Workflow, error) { |
| 58 | perPage := limit |
nothing calls this directly
no test coverage detected