function getGithubCommentInput()

in index.js [8:13]


function getGithubCommentInput() {
  const input = core.getInput('github-comment');
  if (input === 'true') return true;
  if (input === 'false') return false;
  return input;
}