in templater/main.go [167:178]
func useTemplate(jobType string) (string, error) {
switch jobType {
case "periodic":
return periodicTemplate, nil
case "postsubmit":
return postsubmitTemplate, nil
case "presubmit":
return presubmitTemplate, nil
default:
return "", fmt.Errorf("unsupported job type: %s", jobType)
}
}