Welcome to mirror list, hosted at ThFree Co, Russian Federation.

constants.js « terminal « modules « stores « ide « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f7ae9d8f4eae02554b72f7c3a53aaabb413048ab (plain)
1
2
3
4
5
6
7
8
9
export const CHECK_CONFIG = 'config';
export const CHECK_RUNNERS = 'runners';
export const RETRY_RUNNERS_INTERVAL = 10000;

export const STARTING = 'starting';
export const PENDING = 'pending';
export const RUNNING = 'running';
export const STOPPING = 'stopping';
export const STOPPED = 'stopped';