export function getCommentFromLabels()

in fix-version-gaps/fixGaps.ts [58:65]


export function getCommentFromLabels(labelsToAdd: string[]) {
  return [
    'The following labels were identified as gaps in your version labels and will be added automatically:',
    ...labelsToAdd.map((label) => `- ${label}`),
    '',
    'If any of these should not be on your pull request, please manually remove them.',
  ].join('\n');
}