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

linked_pipelines_mock_data.js « graph « pipelines « frontend « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f7f5738e46de4e678e6498ac884593eefa9f50d0 (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
export default {
  __typename: 'Pipeline',
  id: 195,
  iid: '5',
  retryable: false,
  cancelable: false,
  userPermissions: {
    updatePipeline: true,
  },
  path: '/root/elemenohpee/-/pipelines/195',
  status: {
    __typename: 'DetailedStatus',
    group: 'success',
    label: 'passed',
    icon: 'status_success',
  },
  sourceJob: {
    __typename: 'CiJob',
    name: 'test_c',
  },
  project: {
    __typename: 'Project',
    name: 'elemenohpee',
    fullPath: 'root/elemenohpee',
  },
  multiproject: true,
};