(yaml_filename: str)
| 248 | |
| 249 | @staticmethod |
| 250 | def _resolve_yaml_path(yaml_filename: str) -> Path: |
| 251 | safe_name = validate_workflow_filename(yaml_filename, require_yaml_extension=True) |
| 252 | yaml_path = YAML_DIR / safe_name |
| 253 | if not yaml_path.exists(): |
| 254 | raise ValidationError("YAML file not found", details={"yaml_file": safe_name}) |
| 255 | return yaml_path |
no test coverage detected