in src/input.ts [15:29]
expWorkspaceEndpoint: getExpWorkspaceEndpoint(),
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://')) {