(source string)
| 423 | } |
| 424 | |
| 425 | func projectHint(source string) string { |
| 426 | switch source { |
| 427 | case "github": |
| 428 | return "GitHub repository (e.g. owner/repo)" |
| 429 | case "jira": |
| 430 | return "Jira project key (e.g. PROJ)" |
| 431 | default: |
| 432 | return "Project identifier" |
| 433 | } |
| 434 | } |
| 435 | |
| 436 | // parseImportFilters parses "key:value key2:value2" into a map. |
| 437 | func parseImportFilters(raw string) map[string]any { |
no outgoing calls