aboutsummaryrefslogtreecommitdiffhomepage
path: root/packages/models/src/runners/runner-job-state.model.ts
blob: 07e13512158e3fd8090181b7f98886abe2cc94fa (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
export const RunnerJobState = {
  PENDING: 1,
  PROCESSING: 2,
  COMPLETED: 3,
  ERRORED: 4,
  WAITING_FOR_PARENT_JOB: 5,
  CANCELLED: 6,
  PARENT_ERRORED: 7,
  PARENT_CANCELLED: 8,
  COMPLETING: 9
} as const

export type RunnerJobStateType = typeof RunnerJobState[keyof typeof RunnerJobState]