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