summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/pipelines/components/pipelines_list/tokens/constants.js
blob: 02baa76f62734de301a450947b486c402a53cdee (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__('Pipeline|Source|Push'),
    value: 'push',
  },
  {
    text: s__('Pipeline|Source|Web'),
    value: 'web',
  },
  {
    text: s__('Pipeline|Source|Trigger'),
    value: 'trigger',
  },
  {
    text: s__('Pipeline|Source|Schedule'),
    value: 'schedule',
  },
  {
    text: s__('Pipeline|Source|API'),
    value: 'api',
  },
  {
    text: s__('Pipeline|Source|External'),
    value: 'external',
  },
  {
    text: s__('Pipeline|Source|Pipeline'),
    value: 'pipeline',
  },
  {
    text: s__('Pipeline|Source|Chat'),
    value: 'chat',
  },
  {
    text: s__('Pipeline|Source|Web IDE'),
    value: 'webide',
  },
  {
    text: s__('Pipeline|Source|Merge Request'),
    value: 'merge_request_event',
  },
  {
    text: s__('Pipeline|Source|External Pull Request'),
    value: 'external_pull_request_event',
  },
  {
    text: s__('Pipeline|Source|Parent Pipeline'),
    value: 'parent_pipeline',
  },
];