(client *api.Client, repo ghrepo.Interface, workflowID int64)
| 147 | } |
| 148 | |
| 149 | func GetWorkflow(client *api.Client, repo ghrepo.Interface, workflowID int64) (*Workflow, error) { |
| 150 | return getWorkflowByID(client, repo, strconv.FormatInt(workflowID, 10)) |
| 151 | } |
| 152 | |
| 153 | func isWorkflowFile(f string) bool { |
| 154 | name := strings.ToLower(f) |
nothing calls this directly
no test coverage detected