export function getActionInput()

in src/input.ts [9:22]


export function getActionInput(): Input {
  const shouldAddCommit = getBooleanInput(
    'add-commit-hash-to-metric-description',
    false
  )
  return {
    expWorkspaceEndpoint: getExpWorkspaceEndpoint(),
    configFile: getRequiredInputString('path'),
    operationType: getOperationType(),
    strictSync: getBooleanInput('strict', true),
    addCommitShaToDescription: shouldAddCommit,
    githubSha: shouldAddCommit ? getGithubSha() : ''
  }
}