Interface Config

interface Config {
    apiBaseUrl: string;
    branch: string;
    buildName: null | string;
    ciProvider: null | string;
    commit: string;
    jobId: null | string;
    mode: null | "ci" | "monitoring";
    owner: null | string;
    parallel: boolean;
    parallelIndex: null | number;
    parallelNonce: null | string;
    parallelTotal: null | number;
    prBaseBranch: null | string;
    prHeadCommit: null | string;
    prNumber: null | number;
    referenceBranch: null | string;
    referenceCommit: null | string;
    repository: null | string;
    runAttempt: null | number;
    runId: null | string;
    threshold: null | number;
    token: null | string;
}

Properties

apiBaseUrl: string
branch: string
buildName: null | string
ciProvider: null | string
commit: string
jobId: null | string
mode: null | "ci" | "monitoring"
owner: null | string
parallel: boolean
parallelIndex: null | number
parallelNonce: null | string
parallelTotal: null | number
prBaseBranch: null | string
prHeadCommit: null | string
prNumber: null | number
referenceBranch: null | string
referenceCommit: null | string
repository: null | string
runAttempt: null | number
runId: null | string
threshold: null | number
token: null | string