async function createProgressIssue()

in scripts/create.js [87:99]


async function createProgressIssue() {
  // Create the progress-tracking issue from the template
  const rawBody = fs.readFileSync('./PROGRESS.template.md', 'utf8');
  const maintainerList = maintainers.map(name => `* @${name}`).join('\n');
  const body = rawBody.replace('{MAINTAINERS}\n', maintainerList);
  await octokit.issues.create({
    owner,
    repo: newRepoName,
    title: `${langName} Translation Progress`,
    body,
  });
  logger.info('Created issue to track translation progress.');
}