in fix-version-gaps/fixGaps.ts [85:96]
export async function fixGaps(accessToken: string, config: ConfigFileOptions, pr: PullRequest) {
const labelsToAdd = getVersionLabelsToAdd(config, pr);
if (labelsToAdd.length > 0) {
const octokit = new Octokit({
auth: accessToken,
});
await createComment(octokit, pr, labelsToAdd);
await addLabels(octokit, pr, labelsToAdd);
}
}