extractMDWorkflowCallInputs reads a .md workflow file's frontmatter and extracts the workflow_call inputs schema, mirroring extractWorkflowCallInputs for .md sources.
(mdPath string)
| 145 | // extractMDWorkflowCallInputs reads a .md workflow file's frontmatter and extracts |
| 146 | // the workflow_call inputs schema, mirroring extractWorkflowCallInputs for .md sources. |
| 147 | func extractMDWorkflowCallInputs(mdPath string) (map[string]any, error) { |
| 148 | return extractInputsFromMarkdown(mdPath, "workflow_call") |
| 149 | } |
| 150 | |
| 151 | // mdHasWorkflowCall reads a .md workflow file's frontmatter and reports whether |
| 152 | // the workflow includes a workflow_call trigger in its 'on:' section. |
no test coverage detected