-
Notifications
You must be signed in to change notification settings - Fork 14
/
blockers.yaml.example
75 lines (68 loc) · 1.3 KB
/
blockers.yaml.example
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
---
job1:
bz:
- 123
jira:
- 'RHOSINFRA-123'
job2:
bz:
- 456
- 789
jira:
- 'RHOSINFRA-456'
- 'RHOSINFRA-789'
builds:
- 2
- 3
# 0 indicates blocker bug/ticket is not on file (either doesn't exist or hasn't been created yet)
job3:
bz:
- 0
jira:
- 0
# Jobs with blockers that are neither bugs nor tickets can utilize the 'other' field for recording
job4:
bz:
- 159
jira:
- 0
other:
- name: Trello Card
url: <URL to Trello card>
- name: Gerrit Patch
url: <Link to Gerrit patch>
# You can have 'other' blockers with a name, a URL, or both
job5:
bz:
- 0
jira:
- 'RHOSINFRA-753'
other:
- name: Experimental Job
- url: <URL>
# If you wish for a job to have an owner, you can specify this as follows
job6:
owners:
bz:
- 0
jira:
- 'RHOSINFRA-963'
# Jobs can have multiple owners
job7:
owners:
bz:
- 852
jira:
- 0
# You can have build numbers for blockers included in report
job8:
bz:
- 1
jira:
- 'RHOSINFRA-754'
builds:
- 1
- 3