* Get configuration for a specific safe output type * @param {string} outputType - The type of safe output (e.g., "add_labels", "update_issue") * @returns {{max?: number, target?: string, allowed?: string[]}} The configuration for this output type
(outputType)
| 31 | * @returns {{max?: number, target?: string, allowed?: string[]}} The configuration for this output type |
| 32 | */ |
| 33 | function getSafeOutputConfig(outputType) { |
| 34 | const config = loadSafeOutputsConfig(); |
| 35 | return config[outputType] || {}; |
| 36 | } |
| 37 | |
| 38 | /** |
| 39 | * Validate and sanitize a title string |
no test coverage detected