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

constants.js « tokens « pipelines_list « components « pipelines « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d8f15cfde91428c8e0cf85eb7ecc6d82b8cf2b7e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
import { s__ } from '~/locale';

export const PIPELINE_SOURCES = [
  {
    text: s__('PipelineSource|Push'),
    value: 'push',
  },
  {
    text: s__('PipelineSource|Web'),
    value: 'web',
  },
  {
    text: s__('PipelineSource|Trigger'),
    value: 'trigger',
  },
  {
    text: s__('PipelineSource|Schedule'),
    value: 'schedule',
  },
  {
    text: s__('PipelineSource|API'),
    value: 'api',
  },
  {
    text: s__('PipelineSource|External'),
    value: 'external',
  },
  {
    text: s__('PipelineSource|Pipeline'),
    value: 'pipeline',
  },
  {
    text: s__('PipelineSource|Chat'),
    value: 'chat',
  },
  {
    text: s__('PipelineSource|Web IDE'),
    value: 'webide',
  },
  {
    text: s__('PipelineSource|Merge Request'),
    value: 'merge_request_event',
  },
  {
    text: s__('PipelineSource|External Pull Request'),
    value: 'external_pull_request_event',
  },
  {
    text: s__('PipelineSource|Parent Pipeline'),
    value: 'parent_pipeline',
  },
];