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