Jan Hruban | e252a73 | 2017-01-03 15:03:09 +0100 | [diff] [blame] | 1 | - 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 Keating | d96e588 | 2017-01-19 13:55:50 -0800 | [diff] [blame] | 31 | status: 'success' |
Jamie Lennox | 3f16de5 | 2017-05-09 14:24:11 +1000 | [diff] [blame] | 32 | status-url: http://logs.example.com/{tenant.name}/{pipeline.name}/{change.project}/{change.number}/{buildset.uuid}/ |
Jan Hruban | e252a73 | 2017-01-03 15:03:09 +0100 | [diff] [blame] | 33 | failure: |
| 34 | github: |
| 35 | comment: false |
| 36 | |
Jesse Keating | 08dab8f | 2017-06-21 12:59:23 +0100 | [diff] [blame] | 37 | - 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 Hruban | e252a73 | 2017-01-03 15:03:09 +0100 | [diff] [blame] | 60 | - 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 Keating | 08dab8f | 2017-06-21 12:59:23 +0100 | [diff] [blame] | 71 | |
| 72 | - project: |
| 73 | name: org/project2 |
| 74 | push-reporting: |
| 75 | jobs: |
| 76 | - project-test1 |