parseRepoMemoryTool converts raw repo-memory tool configuration
(val any)
| 532 | |
| 533 | // parseRepoMemoryTool converts raw repo-memory tool configuration |
| 534 | func parseRepoMemoryTool(val any) *RepoMemoryToolConfig { |
| 535 | // repo-memory can be boolean, object, or array - store raw value |
| 536 | return &RepoMemoryToolConfig{Raw: val} |
| 537 | } |
| 538 | |
| 539 | // parseTimeoutTool converts raw timeout tool configuration to a TemplatableInt32 value. |
| 540 | // Accepts integers and GitHub Actions expressions (e.g. "${{ inputs.tool-timeout }}"). |