configFile: getRequiredInputString()

in src/input.ts [16:29]


    configFile: getRequiredInputString('path'),
    operationType: getOperationType(),
    strictSync: getBooleanInput('strict', true),
    addCommitShaToDescription: shouldAddCommit,
    githubSha: shouldAddCommit ? getGithubSha() : ''
  }
}

function getExpWorkspaceEndpoint() {
  let expWorkspaceEndpoint = getRequiredInputString(
    'online-experimentation-workspace-endpoint'
  )
  expWorkspaceEndpoint = expWorkspaceEndpoint.trim().replace(/\/+$/, '')
  if (!expWorkspaceEndpoint.startsWith('https://')) {