blob: 0fdec85bee7df592e597c693eb180ceb87d2bc5c [file] [log] [blame]
Jan Hrubane252a732017-01-03 15:03:09 +01001- pipeline:
2 name: check
3 description: Standard check
4 manager: independent
5 trigger:
6 github:
7 - event: pull_request
8 action: opened
9 start:
10 github:
11 status: 'pending'
12 comment: false
13 success:
14 github:
15 status: 'success'
16
17- pipeline:
18 name: reporting
19 description: Uncommon reporting
20 manager: independent
21 trigger:
22 github:
23 - event: pull_request
24 action: comment
25 comment: 'reporting check'
26 start:
27 github: {}
28 success:
29 github:
30 comment: false
Jesse Keatingd96e5882017-01-19 13:55:50 -080031 status: 'success'
Jamie Lennox3f16de52017-05-09 14:24:11 +100032 status-url: http://logs.example.com/{tenant.name}/{pipeline.name}/{change.project}/{change.number}/{buildset.uuid}/
Jan Hrubane252a732017-01-03 15:03:09 +010033 failure:
34 github:
35 comment: false
36
Jesse Keating08dab8f2017-06-21 12:59:23 +010037- pipeline:
38 name: push-reporting
39 description: Uncommon reporting
40 manager: independent
41 trigger:
42 github:
43 - event: push
44 - event: pull_request
45 action: opened
46 start:
47 github:
48 comment: true
49 status: 'pending'
50 success:
51 github:
52 comment: true
53 status: 'success'
54 merge: true
55 failure:
56 github:
57 comment: true
58 status: 'failure'
59
Jan Hrubane252a732017-01-03 15:03:09 +010060- job:
61 name: project-test1
62
63- project:
64 name: org/project
65 check:
66 jobs:
67 - project-test1
68 reporting:
69 jobs:
70 - project-test1
Jesse Keating08dab8f2017-06-21 12:59:23 +010071
72- project:
73 name: org/project2
74 push-reporting:
75 jobs:
76 - project-test1