MCPcopy Index your code
hub / github.com/getsentry/XcodeBuildMCP / mergeWorkflowSelections

Function mergeWorkflowSelections

src/cli/commands/setup.ts:273–281  ·  view source on GitHub ↗
(
  workflowOptions: SelectOption<string>[],
  selectedIds: Iterable<string>,
)

Source from the content-addressed store, hash-verified

271}
272
273function mergeWorkflowSelections(
274 workflowOptions: SelectOption<string>[],
275 selectedIds: Iterable<string>,
276): string[] {
277 const selected = new Set(selectedIds);
278 return workflowOptions
279 .filter((option) => selected.has(option.value))
280 .map((option) => option.value);
281}
282
283function getChangedFields(
284 beforeConfig: ProjectConfig | undefined,

Callers 1

selectWorkflowIdsFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected